Example #1
0
        public Boolean CRE_Puesto(MOD_Puesto obj)
        {
            try
            {
                LOG_Puesto Logica = new LOG_Puesto();
                Logica.CRE_Puesto(obj);
                return true;
            }
            catch (Exception )
            {
                return false;
                throw ;

            }
        }
Example #2
0
 public void UPD_Puesto(MOD_Puesto obj)
 {
     try
     {
         LOG_Puesto Logica = new LOG_Puesto();
         Logica.UPD_Puesto(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #3
0
 public MOD_Puesto SEL_GRID_BY_ID_Puesto(int Codigo_Puesto)
 {
     try
     {
         LOG_Puesto logica = new LOG_Puesto();
         MOD_Puesto obj = logica.SEL_Grid_By_Id_Puesto(Codigo_Puesto);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #4
0
 public List<MOD_Puesto> SEL_GRID_Puesto(int codigo, string buscar)
 {
     try
     {
         LOG_Puesto logica = new LOG_Puesto();
         List<MOD_Puesto> Lista = logica.SEL_Grid_Puesto(codigo, buscar);
         return Lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #5
0
 public void DEL_Puesto(int Codigo_Puesto)
 {
     try
     {
         LOG_Puesto Logica = new LOG_Puesto();
         Logica.DEL_Puesto(Codigo_Puesto);
     }
     catch (Exception )
     {
         throw ;
     }
 }