Esempio n. 1
0
        public bool ModificarDB(ct_punto_cargo_FJ_Info info)
        {
            try
            {
                using (EntitiesContabilidad_FJ Context = new EntitiesContabilidad_FJ())
                {
                    ct_punto_cargo_FJ Entity = Context.ct_punto_cargo_FJ.First(q => q.IdEmpresa == info.IdEmpresa && q.IdPunto_cargo == info.IdPunto_cargo);
                    if (Entity != null)
                    {
                        Entity.IdCentroCosto = info.IdCentroCosto == "" ? null : info.IdCentroCosto;
                        Entity.IdCentroCosto_sub_centro_costo = info.IdCentroCosto_sub_centro_costo == "" ? null : info.IdCentroCosto_sub_centro_costo;
                        Context.SaveChanges();
                    }
                    else
                    {
                        GuardarDB(info);
                    }
                }

                return(true);
            }
            catch (Exception ex)
            {
                string arreglo = ToString();
                tb_sis_Log_Error_Vzen_Data oDataLog      = new tb_sis_Log_Error_Vzen_Data();
                tb_sis_Log_Error_Vzen_Info Log_Error_sis = new tb_sis_Log_Error_Vzen_Info(ex.ToString(), "", arreglo, "", "", "", "", "", DateTime.Now);
                oDataLog.Guardar_Log_Error(Log_Error_sis, ref mensaje);
                mensaje = ex.ToString();
                throw new Exception(ex.ToString());
            }
        }
Esempio n. 2
0
        public bool GuardarDB(ct_punto_cargo_FJ_Info info)
        {
            try
            {
                using (EntitiesContabilidad_FJ Context = new EntitiesContabilidad_FJ())
                {
                    var lst = from q in Context.ct_punto_cargo_FJ
                              where q.IdEmpresa == info.IdEmpresa &&
                              q.IdPunto_cargo == info.IdPunto_cargo
                              select q;
                    if (lst.Count() == 0)
                    {
                        ct_punto_cargo_FJ Entity = new ct_punto_cargo_FJ();

                        Entity.IdEmpresa     = info.IdEmpresa;
                        Entity.IdPunto_cargo = info.IdPunto_cargo;
                        Entity.IdCentroCosto = info.IdCentroCosto == "" ? null : info.IdCentroCosto;
                        Entity.IdCentroCosto_sub_centro_costo = info.IdCentroCosto_sub_centro_costo == "" ? null : info.IdCentroCosto_sub_centro_costo;

                        Context.ct_punto_cargo_FJ.Add(Entity);
                        Context.SaveChanges();
                    }
                    else
                    {
                        ModificarDB(info);
                    }
                }

                return(true);
            }
            catch (Exception ex)
            {
                string arreglo = ToString();
                tb_sis_Log_Error_Vzen_Data oDataLog      = new tb_sis_Log_Error_Vzen_Data();
                tb_sis_Log_Error_Vzen_Info Log_Error_sis = new tb_sis_Log_Error_Vzen_Info(ex.ToString(), "", arreglo, "", "", "", "", "", DateTime.Now);
                oDataLog.Guardar_Log_Error(Log_Error_sis, ref mensaje);
                mensaje = ex.ToString();
                throw new Exception(ex.ToString());
            }
        }