public JsonResult GetAvailableMechanics()
        {
            var data = CustomerViewModel.GetAllMechanics();

            return(Json(new { result = data }, JsonRequestBehavior.AllowGet));
        }