Ejemplo n.º 1
0
 public IEnumerable <SumOfAmountOutgoingType> SumsInSpecficOutgoingTypeNumberOfMonths(int month, string userId)
 {
     return(PrepereSumOfAmountInTypes(_outGoingService.GetOutgoingsByNumberOfMonth(month, userId), userId));
 }
 public virtual ActionResult GetOutgoingsByNumberOfMonth(int?month)
 {
     return(Json(_outGoingService.GetOutgoingsByNumberOfMonth(month.GetValueOrDefault(0), _idLoggedUser), JsonRequestBehavior.AllowGet));
 }