예제 #1
0
 public static List <Payment> GetPaymentsByBuilding(int buildingId)
 {
     return(PaymentConverter.ListToDTO(PaymentDAL.GetPaymentsByBuilding(buildingId)));
 }
예제 #2
0
 public static List <Payment> GetAll()
 {
     return(PaymentConverter.ListToDTO(PaymentDAL.Get()));
 }