Beispiel #1
0
 public List <BudgetWithTypeView> GetBudgetCompleteList(int year, int month, Guid memberShipId)
 {
     if (year == 0 || month == 0 || memberShipId == Guid.Empty)
     {
         return(null);
     }
     return(_budgetQueryService.FindCompleteWithDate(year, month, memberShipId).ToList());
 }