Esempio n. 1
0
        public ActionResult ProfitRaport()
        {
            ProfitRaportVM raportVm = new ProfitRaportVM();

            raportVm.DateFrom = Convert.ToDateTime(System.DateTime.Now.ToShortDateString());
            raportVm.DateTo   = DateTime.Today;
            return(View(raportVm));
        }
Esempio n. 2
0
 public ActionResult ProfitRaport(ProfitRaportVM profitRaport)
 {
     return(View(profitRaport));
 }