public double GetTotalMealCostOfMonth(int month, int year, int userId)
        {
            OrderGateway orderGateway = new OrderGateway();

            return(orderGateway.GetTotalMealCostOfMonth(month, year, userId));
        }