123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- using GxPress.Common.Page;
- using GxPress.Result.Organization;
- namespace GxPress.Repository.Interface.Organization
- {
- public interface IOrganizationRepository : IRepository
- {
-
-
-
-
-
- Task<PagedList<Entity.tede2.Organization.Organization>> GetAllAsync(OrganizationListRequest request);
-
-
-
-
-
- Task<bool> UpdateAsync(OrganizationUpdateRequest request);
-
-
-
-
-
- Task<bool> DeleteAsync(List<int> ids);
-
-
-
-
-
- Task<bool> UpdateIsDisableAsync(OrganizationUpdateDisableRequest request);
-
-
-
-
-
- Task<bool> InsertAsync(Entity.tede2.Organization.Organization model);
- }
- }
|