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); } }