public JsonResult GetVendors(int customerId)
 {
     return(Json(VendorRepository.GetVendorsByCustomer(customerId), JsonRequestBehavior.AllowGet));
 }