public JsonResult NotificaReportesRes(int clvuser, string tipo) { List <ReporteBean> repBean = new List <ReporteBean>(); ReporteDao repDao = new ReporteDao(); repBean = repDao.sp_Notifica_Reportes_Resueltos(clvuser, tipo); return(Json(repBean)); }
public JsonResult ActualizaReportesProb(int clvreport, int estado, string msjreport) { ReporteBean repBean = new ReporteBean(); ReporteDao repDao = new ReporteDao(); repBean = repDao.sp_Actualizar_ReporteProblema_Notifica(clvreport, estado, msjreport); var data = new { resp = repBean.sMensaje }; return(Json(data)); }
public JsonResult NotificaConfirm(int clvrep) { ReporteBean repBean = new ReporteBean(); ReporteDao repDao = new ReporteDao(); repBean = repDao.sp_Notifica_Confirma_Vista(clvrep); var data = new { resp = repBean.sMensaje }; return(Json(data)); }
public JsonResult EnvReportProblema(int keyreport, string msjreport, string code) { ReporteBean repBean = new ReporteBean(); ReporteDao repDao = new ReporteDao(); string result = ""; repBean = repDao.sp_Insert_Reporta_Problema(keyreport, msjreport, code); result = repBean.sMensaje; var data = new { resp = result }; return(Json(data)); }
public long CountReporte() { return(ReporteDao.Count()); }
public Reporte GetReporte(Expression <Func <Reporte, bool> > criteria) { return(ReporteDao.Get(criteria)); }
public Reporte GetReporte(int id) { return(ReporteDao.Get(id)); }
public List <Reporte> GetAllReporte(string conditions, string orders) { return(ReporteDao.GetAll(conditions, orders)); }
public List <Reporte> GetAllReporte(string orders) { return(ReporteDao.GetAll(orders)); }
public List <Reporte> GetAllReporte(Expression <Func <Reporte, bool> > criteria) { return(ReporteDao.GetAll(criteria)); }
public List <Reporte> GetAllReporte() { return(ReporteDao.GetAll()); }
public void DeleteReporte(int id) { ReporteDao.Delete(id); }
public void UpdateReporte(Reporte entity) { ReporteDao.Update(entity); }
public int SaveReporte(Reporte entity) { return(ReporteDao.Save(entity)); }
public long CountReporte(Expression <Func <Reporte, bool> > criteria) { return(ReporteDao.Count(criteria)); }