using System; using System.Collections.Generic; using webapi.Domain.AggregatesModel.FlatAggregate; using webapi.Infrastructure.Repositories; namespace webapi.Infractructure.Repositories { public interface IMaintenanceFeeRepository : IBaseRepository { IEnumerable GetMaintenanceFees(Guid pmcId, string pmsCondoName, Guid flatId, string pmsUserName); IEnumerable GetAllMaintenanceFeesByFlatId(Guid flatId); } }