[Add] MasterData Services.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using AMREZ.EOP.Contracts.DTOs.MasterData.Subdistrict;
|
||||
|
||||
namespace AMREZ.EOP.Abstractions.Applications.UseCases.MasterData.Subdistrict;
|
||||
|
||||
public interface IGetSubdistrictUseCase
|
||||
{
|
||||
Task<SubdistrictResponse?> ExecuteAsync(Guid id, CancellationToken ct = default);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using AMREZ.EOP.Contracts.DTOs.Common;
|
||||
using AMREZ.EOP.Contracts.DTOs.MasterData.Subdistrict;
|
||||
|
||||
namespace AMREZ.EOP.Abstractions.Applications.UseCases.MasterData.Subdistrict;
|
||||
|
||||
public interface IListSubdistrictsUseCase
|
||||
{
|
||||
Task<PagedResponse<SubdistrictResponse>> ExecuteAsync(SubdistrictListRequest req, CancellationToken ct = default);
|
||||
}
|
||||
Reference in New Issue
Block a user