public ActionResult ObtenerGrillaSolicitudesModel([ModelBinder(typeof(ConsultaPlasticosModelBinder))] ConsultaPlasticosViewModel CSM)
 {
     try
     {
         var datos = BuscarSolicitudes(CSM);
         return(Json(datos, JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         throw;
     }
     finally
     {
     }
 }
 protected PlasticosGrillaViewModel BuscarSolicitudes(ConsultaPlasticosViewModel cSM)
 {
     throw new NotImplementedException();
 }