コード例 #1
0
ファイル: HomeController.cs プロジェクト: exprezzo/Nomina
        public JsonResult eliminar()
        {
            MARPAC_PruebaEntities corp = new MARPAC_PruebaEntities();
            Dictionary<string, object> elemento = new Dictionary<string, object>();
            elemento = new Dictionary<string, object>();
            Dictionary<string, object> data = new Dictionary<string, object>();

            elemento["success"] = true;

            return this.Json(elemento);
        }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: exprezzo/Nomina
        public JsonResult guardar12(int CodigoRegimen, string NombreRegimen, string PideCURP, string Activo)
        {
            MARPAC_PruebaEntities corp = new MARPAC_PruebaEntities();
            Dictionary<string, object> elemento = new Dictionary<string, object>();
            elemento = new Dictionary<string, object>();
            Dictionary<string, object> data = new Dictionary<string, object>();
            RegimenesFiscale regimen = corp.RegimenesFiscales.SingleOrDefault(a => a.CodigoRegimen == CodigoRegimen);
            regimen.CodigoRegimen = CodigoRegimen;
            regimen.NombreRegimen = NombreRegimen;
            regimen.PideCURP = PideCURP;
            regimen.Activo = Activo;
            corp.SaveChanges();

            elemento["success"] = true;
            return this.Json(elemento);
        }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: exprezzo/Nomina
        public JsonResult guardar(string datos)
        {
            MARPAC_PruebaEntities corp = new MARPAC_PruebaEntities();

            var jsSerializer = new JavaScriptSerializer();
            RegimenesFiscale myPerson = jsSerializer.Deserialize<RegimenesFiscale>(datos);

            Dictionary<string, object> elemento = new Dictionary<string, object>();
            elemento = new Dictionary<string, object>();
            RegimenesFiscale regimen = corp.RegimenesFiscales.SingleOrDefault(a => a.CodigoRegimen == myPerson.CodigoRegimen);
            regimen.CodigoRegimen = myPerson.CodigoRegimen;
            regimen.NombreRegimen = myPerson.NombreRegimen;
            regimen.PideCURP = myPerson.PideCURP;
            regimen.Activo = myPerson.Activo;
            corp.SaveChanges();

            elemento["success"] = true;
            return this.Json(elemento);
        }
コード例 #4
0
ファイル: HomeController.cs プロジェクト: exprezzo/Nomina
        public JsonResult listar(int limit, int start)
        {
            MARPAC_PruebaEntities corp = new MARPAC_PruebaEntities();
            List<Dictionary<string, object>> datos = new List<Dictionary<string, object>>();

            var a = corp.RegimenesFiscales.ToList().Skip(start).Take(limit);// paginado
            var total = corp.RegimenesFiscales.Count();
            foreach (var item in a)
            {
                Dictionary<string, object> elemento = new Dictionary<string, object>();
                elemento["CodigoRegimen"] = item.CodigoRegimen;
                elemento["NombreRegimen"] = item.NombreRegimen;
                elemento["PideCURP"] = item.PideCURP;
                elemento["Activo"] = item.Activo;
                datos.Add(elemento);
            }

            Dictionary<string, object> resultado = new Dictionary<string, object>();
            resultado["success"] = true;
            resultado["msg"] = "Datos servidos y alborotados";
            resultado["total"] = total;
            resultado["datos"] = datos;
            return this.Json(resultado);
        }
コード例 #5
0
ファイル: HomeController.cs プロジェクト: exprezzo/Nomina
        public JsonResult obtener(int codigoRegimen)
        {
            MARPAC_PruebaEntities corp = new MARPAC_PruebaEntities();
            Dictionary<string, object> elemento = new Dictionary<string, object>();
            elemento = new Dictionary<string, object>();
            Dictionary<string, object> data = new Dictionary<string, object>();
            var regimen = corp.RegimenesFiscales.SingleOrDefault(a => a.CodigoRegimen == codigoRegimen);
            data["CodigoRegimen"] = regimen.CodigoRegimen;
            data["NombreRegimen"] = regimen.NombreRegimen;
            data["PideCURP"] = regimen.PideCURP;
            data["Activo"] = regimen.Activo;

            elemento["success"] = true;
            elemento["data"] = data;
            return this.Json(elemento);
        }