ILeaveAllocationService.cs 280 B

123456789101112
  1. 
  2. using MTWorkHR.Application.Models;
  3. using MTWorkHR.Core.Entities;
  4. using System.Threading.Tasks;
  5. namespace MTWorkHR.Application.Services.Interfaces
  6. {
  7. public interface IOrderAllocationService : IService<OrderAllocation, OrderAllocationDto, OrderAllocationDto>
  8. {
  9. }
  10. }