Skip to content

Commit c416176

Browse files
committed
Updated Namespaces.
1 parent f1d4a8c commit c416176

File tree

105 files changed

+264
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+264
-158
lines changed

examples/DIExample/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
3-
using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
3+
using Gotenberg.Sharp.API.Client.Domain.Pages;
44
using Gotenberg.Sharp.API.Client.Domain.Requests;
55
using Gotenberg.Sharp.API.Client.Domain.Settings;
66
using Gotenberg.Sharp.API.Client.Extensions;

examples/HtmlConvert/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
33
using Gotenberg.Sharp.API.Client.Domain.Settings;
44
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;
55

examples/HtmlWithMarkdown/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
33
using Gotenberg.Sharp.API.Client.Domain.Settings;
44
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;
55
using Microsoft.Extensions.Configuration;

examples/OfficeMerge/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
3-
using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
3+
using Gotenberg.Sharp.API.Client.Domain.PdfFormat;
44
using Gotenberg.Sharp.API.Client.Domain.Settings;
55
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;
66

examples/PdfConvert/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
3-
using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
3+
using Gotenberg.Sharp.API.Client.Domain.PdfFormat;
44
using Gotenberg.Sharp.API.Client.Domain.Settings;
55
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;
66

examples/PdfMerge/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
3-
using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
3+
using Gotenberg.Sharp.API.Client.Domain.PdfFormat;
44
using Gotenberg.Sharp.API.Client.Domain.Settings;
55
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;
66
using Microsoft.Extensions.Configuration;

examples/UrlConvert/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
3-
using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
3+
using Gotenberg.Sharp.API.Client.Domain.Pages;
44
using Gotenberg.Sharp.API.Client.Domain.Settings;
55
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;
66

examples/UrlsToMergedPdf/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
3-
using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
3+
using Gotenberg.Sharp.API.Client.Domain.Pages;
44
using Gotenberg.Sharp.API.Client.Domain.Requests;
55
using Gotenberg.Sharp.API.Client.Domain.Settings;
66
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;

examples/Webhook/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Gotenberg.Sharp.API.Client;
2-
using Gotenberg.Sharp.API.Client.Domain.Builders;
3-
using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
2+
using Gotenberg.Sharp.API.Client.Application.Builders;
3+
using Gotenberg.Sharp.API.Client.Domain.Pages;
44
using Gotenberg.Sharp.API.Client.Domain.Settings;
55
using Gotenberg.Sharp.API.Client.Infrastructure.Pipeline;
66
using Microsoft.Extensions.Configuration;

src/Gotenberg.Sharp.Api.Client/Application/Builders/BaseBuilder.cs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,17 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace Gotenberg.Sharp.API.Client.Domain.Builders;
16+
using Gotenberg.Sharp.API.Client.Application.Overlays;
17+
using Gotenberg.Sharp.API.Client.Application.PdfOutput;
18+
using Gotenberg.Sharp.API.Client.Application.Requests;
19+
using Gotenberg.Sharp.API.Client.Application.Rotation;
20+
using Gotenberg.Sharp.API.Client.Application.Split;
21+
using Gotenberg.Sharp.API.Client.Domain.Overlays;
22+
using Gotenberg.Sharp.API.Client.Domain.PdfOutput;
23+
using Gotenberg.Sharp.API.Client.Domain.Rotation;
24+
using Gotenberg.Sharp.API.Client.Domain.Split;
25+
26+
namespace Gotenberg.Sharp.API.Client.Application.Builders;
1727

1828
/// <summary>
1929
/// Base class for all Gotenberg request builders. Provides core functionality for building and configuring requests.

0 commit comments

Comments
 (0)