/**/
        public ActionResult searchByDate(DateTime from, DateTime to)
        {
            ViewBag.searchTable = con.getSearchDate(from, to);
            return(View());
        }

        /**/
        public ActionResult searchByCode(String code)
        {
            ViewBag.searchTable = con.getSearchCode(code);
            return(View());
        }