public entidades.Empresa Seleccionar(entidades.Empresa item) { try { return(empresa.Seleccionar(item)); } catch (Exception ex) { BIT.UDLA.FLUJOS.PASANTIAS.Comun.Logger.ExLogger(ex); throw ex; } }
public bool Insertar(entidades.Empresa item, out long?idEmpresa) { try { return(empresa.Insertar(item, out idEmpresa)); } catch (Exception ex) { BIT.UDLA.FLUJOS.PASANTIAS.Comun.Logger.ExLogger(ex); throw ex; } }