IStatesAppService.cs 268 B

12345678910
  1. using WeOnlineApp.BaseSystem.States.Dto;
  2. using IwbZero.AppServiceBase;
  3. namespace WeOnlineApp.BaseSystem.States
  4. {
  5. public interface IStatesAppService : IIwbZeroAsyncCrudAppService<StateDto, int, IwbPagedRequestDto, StateCreateDto, StateUpdateDto>
  6. {
  7. }
  8. }