Ejemplo n.º 1
0
        public ActionResult DepreciationViewParameters()
        {
            PrepareYearMonths prepareYearMonths = new PrepareYearMonths();
            YearMonths        yearMonths        = prepareYearMonths.GetYearMonths();

            yearMonths.SetForDepreciationView();
            return(View(yearMonths));
        }
Ejemplo n.º 2
0
        public ActionResult DepreciationPlanParameters()
        {
            PrepareYearMonths prepareYearMonths = new PrepareYearMonths();
            YearMonths        yearMonths        = prepareYearMonths.GetYearMonths();

            yearMonths.EndYear = DateTime.Now.Year + 1;

            return(View(yearMonths));
        }