Clean up and reorganize using/import statements across the solution. Remove unnecessary DTO imports from Application and Infrastructure layers, and ensure Contracts DTOs are only referenced in API and BlazorWebApp layers. No business logic is changed; these updates improve code organization, reduce coupling, and clarify architectural separation between layers.
12 lines
448 B
C#
12 lines
448 B
C#
using DbFirst.Contracts.Layouts;
|
|
|
|
namespace DbFirst.BlazorWebApp.Services
|
|
{
|
|
public interface ILayoutApiClient
|
|
{
|
|
Task<LayoutDto?> GetAsync(string layoutType, string layoutKey, string userName, CancellationToken ct = default);
|
|
Task<LayoutDto> UpsertAsync(LayoutDto dto, CancellationToken ct = default);
|
|
Task DeleteAsync(string layoutType, string layoutKey, string userName, CancellationToken ct = default);
|
|
}
|
|
}
|