Esempio n. 1
0
 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;
     }
 }
Esempio n. 2
0
 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;
     }
 }