IStoreHouseLocationsApplicationService.cs 338 B

12345678910
  1. using IwbZero.AppServiceBase;
  2. using ShwasherSys.BasicInfo.StoreHouseLocations.Dto;
  3. namespace ShwasherSys.BasicInfo.StoreHouseLocations
  4. {
  5. public interface IStoreHouseLocationsAppService : IIwbAsyncCrudAppService<StoreHouseLocationDto, int, PagedRequestDto, StoreHouseLocationCreateDto, StoreHouseLocationUpdateDto >
  6. {
  7. }
  8. }