public bool guardarDB(fa_tarifario_horometro_Info info) { try { using (Entity_Facturacion_FJ Context = new Entity_Facturacion_FJ()) { fa_tarifario_horometro Entity = new fa_tarifario_horometro(); Entity.IdEmpresa = info.IdEmpresa; Entity.IdTarifario = info.IdTarifario = get_id(info.IdEmpresa); Entity.IdCentroCosto = info.IdCentroCosto; Entity.IdPeriodo_ini = info.IdPeriodo_ini; Entity.IdPeriodo_fin = info.IdPeriodo_fin; Entity.Observacion = info.Observacion; Entity.estado = info.estado = true; Entity.IdProducto_hora_regular = info.IdProducto_hora_regular; Entity.IdProducto_hora_extra = info.IdProducto_hora_extra; Entity.IdCod_Impuesto = info.IdCod_Impuesto; Entity.porcentaje = info.porcentaje; Context.fa_tarifario_horometro.Add(Entity); Context.SaveChanges(); } return(true); } catch (Exception ex) { string MensajeError = ""; 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 MensajeError); MensajeError = ex.ToString(); throw new Exception(ex.ToString()); } }
public bool anularDB(fa_tarifario_horometro_Info info) { try { using (Entity_Facturacion_FJ Context = new Entity_Facturacion_FJ()) { fa_tarifario_horometro Entity = Context.fa_tarifario_horometro.FirstOrDefault(q => q.IdEmpresa == info.IdEmpresa && q.IdTarifario == info.IdTarifario); if (Entity != null) { Entity.estado = false; Context.SaveChanges(); } } return(true); } catch (Exception ex) { string MensajeError = ""; 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 MensajeError); MensajeError = ex.ToString(); throw new Exception(ex.ToString()); } }