예제 #1
0
        public ActionResult GetRevenueByUser(int?month, int?year, int?officeId)
        {
            DateTimesForMonth times = getDatesForMonth(month, year);

            return(Json(_dashboardBusiness.GetRevenueByUser(times.StartOfMonth, times.EndOfMonth, officeId), JsonRequestBehavior.AllowGet));
        }