using System.Collections.Generic; using System.Threading.Tasks; using Datory; using GxPress.Common.Page; using GxPress.Request.OrganizationUser; namespace GxPress.Repository.Interface.Organization { public interface IOrganizationUserRepository : IRepository { Task> GetSearchAllAsync(OrganizationUserSearchRequest request); Task UpdateAsync(OrganizationUserUpdateRequest request); Task InsertAsync(Entity.tede2.Organization.OrganizationUser model); Task> GetAllAsync(List ids); Task DeleteAsync(List ids); Task UpdateDisableAsync(OrganizationUserDisableUpdateRequest request); } }