IServiceEmployeeRepository
user_7238188
csharp
2 years ago
666 B
4
Indexable
using BUMA.LineUp.Services.General.Domain.Models.Request;
using BUMA.LineUp.Services.General.Domain.Models.Request.Notifications;
using BUMA.LineUp.Services.General.Domain.Models.Response;
using BUMA.LineUp.Services.General.Domain.Models.Response.ServiceEmployee;
namespace BUMA.LineUp.Services.General.Domain.Interfaces.ServiceEmployee
{
public interface IServiceEmployeeRepository
{
Task<List<ServiceEmployeeResponse>> GetServiceEmployeeAsync(DefaultGetRequest request, CancellationToken cancellationToken);
Task<ApiResponse> GetServiceFCmAsync(List<long>? request, CancellationToken cancellationToken = default);
}
}
Editor is loading...
Leave a Comment