using System; using System.Collections.Generic; using webapi.Domain.AggregatesModel.UserFlatMappingAggregate; using webapi.Infrastructure.Repositories; namespace webapi.Infractructure.Core { public interface IUserFlatMappingRepository : IBaseRepository { IEnumerable GetUserFlatsMappings(Guid userId, Guid? flatId = null); IEnumerable GetAllUserFlatsMappings(IEnumerable flatIds); IEnumerable GetUserFlatsMappingsById(IEnumerable Ids); } }