Пример #1
0
 public EntityEmpresa SelectByKey(KeyEmpresa oKeyEmpresa)
 {
     try
     {
         return(EmpresaApp.SelectByKey(oKeyEmpresa));
     }
     catch (Exception)
     {
         throw new FaultException("Error al seleccionar Empresas");
     }
 }
Пример #2
0
 public EntityEmpresa Delete(EntityEmpresa oEntityEmpresa)
 {
     try
     {
         return(EmpresaApp.Update(oEntityEmpresa));
     }
     catch (Exception)
     {
         throw new FaultException("Error al eliminar Empresas");
     }
 }
Пример #3
0
 public EntityEmpresa Update(EntityEmpresa oEntityEmpresa)
 {
     try
     {
         return(EmpresaApp.Update(oEntityEmpresa));
     }
     catch (Exception)
     {
         throw new FaultException("Error al actualizar Empresas");
     }
 }
Пример #4
0
 public EntityEmpresa Insert(EntityEmpresa oEntityEmpresa)
 {
     try
     {
         return(EmpresaApp.Insert(oEntityEmpresa));
     }
     catch (Exception)
     {
         throw new FaultException("Error al insertar Empresas");
     }
 }
Пример #5
0
 public IList <EntityEmpresaPaginacion> SelectPagging(ref EntityEmpresaPaginacion oEntityEmpresaPaginacion)
 {
     try
     {
         return(EmpresaApp.SelectPagging(ref oEntityEmpresaPaginacion));
     }
     catch (Exception)
     {
         throw new FaultException("Error al seleccionar Empresas");
     }
 }
Пример #6
0
 public IList <EntityEmpresa> Select(EntityEmpresa oEntityEmpresa)
 {
     try
     {
         return(EmpresaApp.Select(oEntityEmpresa));
     }
     catch (Exception)
     {
         throw new FaultException("Error al seleccionar Empresas");
     }
 }