IOrganizationUserRepository.cs 522 B

123456789101112131415
  1. using System.Threading.Tasks;
  2. using Datory;
  3. using GxPress.Common.Page;
  4. using GxPress.Request.OrganizationUser;
  5. namespace GxPress.Repository.Interface.Organization
  6. {
  7. public interface IOrganizationUserRepository : IRepository
  8. {
  9. Task<PagedList<Entity.tede2.Organization.OrganizationUser>> GetSearchAllAsync(OrganizationUserSearchRequest request);
  10. Task<bool> UpdateAsync(OrganizationUserUpdateRequest request);
  11. Task<bool> InsertAsync(Entity.tede2.Organization.OrganizationUser model);
  12. }
  13. }