public ActionResult Index(string customerName, string category)
        {
            ViewBag.Categorys = new SelectList(_repoCustomer.GetCategorys(), "key", "value");;

            return(View());
        }