コード例 #1
0
        public ActionResult FilteredList(string DropDownListAccounts, string InitialDate, string EndDate, string Movement, string InitialAmount, string EndAmount)
        {
            ViewBag.Transactions = TransactionsSearchedBL.GetAllMovements(DropDownListAccounts, InitialDate, EndDate, Movement, InitialAmount, EndAmount);
            SentencesBL obj = new SentencesBL();

            ViewBag.Account  = Convert.ToInt32(DropDownListAccounts);
            ViewBag.Movement = Movement;
            return(View());
        }