Beispiel #1
0
 public IList <EntityTipoEmpresa> SelectTipoEmpresa(EntityTipoEmpresa oEntityTipoEmpresa)
 {
     try
     {
         return(TipoEmpresaApp.Select(oEntityTipoEmpresa));
     }
     catch (Exception)
     {
         throw new FaultException("Error al seleccionar Tipos de Empresas");
     }
 }
Beispiel #2
0
 public IList <EntityTipoEmpresa> SelectTipoEmpresa(EntityTipoEmpresa oEntityTipoEmpresa)
 {
     try
     {
         return(EmpresaService.SelectTipoEmpresa(oEntityTipoEmpresa));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #3
0
 public IList <EntityTipoEmpresa> Select(EntityTipoEmpresa oEntityTipoEmpresa)
 {
     try
     {
         CTransaction oCTransaction = CTransaction.Empty;
         return(Repo.Select(oEntityTipoEmpresa, oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #4
0
 public IList <EntityTipoEmpresa> Select(EntityTipoEmpresa oEntityTipoEmpresa, CTransaction oCTransaction)
 {
     try
     {
         DataTipoEmpresaRepository data = new DataTipoEmpresaRepository(oEntityTipoEmpresa, "TipoEmpresa");
         return(data.Select(oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #5
0
 public EntityTipoEmpresa Delete(EntityTipoEmpresa oValue, CTransaction transaction)
 {
     throw new NotImplementedException();
 }
Beispiel #6
0
 public EntityTipoEmpresa Insert(EntityTipoEmpresa oValue, CTransaction oCTransaction)
 {
     throw new NotImplementedException();
 }