Exemplo n.º 1
0
 public void Elimina(SectorBE pItem)
 {
     try
     {
         SectorDL Sector = new SectorDL();
         Sector.Elimina(pItem);
     }
     catch (Exception ex)
     { throw ex; }
 }
Exemplo n.º 2
0
 public void Actualiza(SectorBE pItem)
 {
     try
     {
         SectorDL Sector = new SectorDL();
         Sector.Actualiza(pItem);
     }
     catch (Exception ex)
     { throw ex; }
 }
Exemplo n.º 3
0
 public void Inserta(SectorBE pItem)
 {
     try
     {
         SectorDL Sector = new SectorDL();
         Sector.Inserta(pItem);
     }
     catch (Exception ex)
     { throw ex; }
 }
Exemplo n.º 4
0
 public List <SectorBE> ListaTodosActivo(int IdEmpresa, int IdUnidadMinera, int IdArea)
 {
     try
     {
         SectorDL Sector = new SectorDL();
         return(Sector.ListaTodosActivo(IdEmpresa, IdUnidadMinera, IdArea));
     }
     catch (Exception ex)
     { throw ex; }
 }
Exemplo n.º 5
0
 public SectorBE SeleccionaDescripcion(int IdEmpresa, int IdUnidadMinera, int IdArea, string DescSector)
 {
     try
     {
         SectorDL Sector = new SectorDL();
         SectorBE objEmp = Sector.SeleccionaDescripcion(IdEmpresa, IdUnidadMinera, IdArea, DescSector);
         return(objEmp);
     }
     catch (Exception ex)
     { throw ex; }
 }
Exemplo n.º 6
0
 public SectorBE Selecciona(int IdSector)
 {
     try
     {
         SectorDL Sector = new SectorDL();
         SectorBE objEmp = Sector.Selecciona(IdSector);
         return(objEmp);
     }
     catch (Exception ex)
     { throw ex; }
 }