diff --git a/common/ASC.Core.Common/Core/IUserService.cs b/common/ASC.Core.Common/Core/IUserService.cs index 1d5d53eefd..4bdc1e3588 100644 --- a/common/ASC.Core.Common/Core/IUserService.cs +++ b/common/ASC.Core.Common/Core/IUserService.cs @@ -40,7 +40,7 @@ namespace ASC.Core [Scope(typeof(ConfigureEFUserService), typeof(ConfigureCachedUserService))] public interface IUserService { - IDictionary GetUsers(int tenant, DateTime from); + IEnumerable GetUsers(int tenant, DateTime from); IQueryable GetUsers(int tenant, bool isAdmin, EmployeeStatus? employeeStatus, @@ -78,7 +78,7 @@ namespace ASC.Core void SetUserPasswordHash(int tenant, Guid id, string passwordHash); - IDictionary GetGroups(int tenant, DateTime from); + IEnumerable GetGroups(int tenant, DateTime from); Group GetGroup(int tenant, Guid id); @@ -86,7 +86,7 @@ namespace ASC.Core void RemoveGroup(int tenant, Guid id); - + UserGroupRef GetUserGroupRef(int tenant, Guid groupId, UserGroupRefType refType); IDictionary GetUserGroupRefs(int tenant, DateTime from); UserGroupRef SaveUserGroupRef(int tenant, UserGroupRef r);