// GET: Bill
        public ActionResult Index()
        {
            var ep    = new BillProcess();
            var lista = ep.GetTop1000();

            return(View("Index", lista));
        }
        public ActionResult Create(BillDto billDto)
        {
            try
            {
                var bill  = BillModel.MapBill(billDto);
                var ep    = new BillProcess();
                var lista = ep.Add(billDto.IdUser, bill);

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }