14 lines
489 B
C#
14 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using webapi.Domain.AggregatesModel.FlatAggregate;
|
|
using webapi.Infrastructure.Repositories;
|
|
|
|
namespace webapi.Infractructure.Repositories
|
|
{
|
|
public interface IMaintenanceFeeRepository : IBaseRepository<MaintenanceFee>
|
|
{
|
|
IEnumerable<MaintenanceFee> GetMaintenanceFees(Guid pmcId, string pmsCondoName, Guid flatId, string pmsUserName);
|
|
IEnumerable<MaintenanceFee> GetAllMaintenanceFeesByFlatId(Guid flatId);
|
|
}
|
|
}
|