Beispiel #1
0
 public void DEL_Perfil(int Codigo)
 {
     try
     {
         LOG_Perfil Logica = new LOG_Perfil();
         Logica.DEL_Perfil(Codigo);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Beispiel #2
0
        public Boolean CRE_Perfil(MOD_Perfil obj)
        {
            try
            {
                LOG_Perfil Logica = new LOG_Perfil();
                Logica.CRE_Perfil(obj);
                return true;
            }
            catch (Exception )
            {
                return false;
                throw ;

            }
        }
Beispiel #3
0
 public void UPD_Perfil(MOD_Perfil obj)
 {
     try
     {
         LOG_Perfil Logica = new LOG_Perfil();
         Logica.UPD_Perfil(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Beispiel #4
0
        public List<MOD_Perfil> SEL_GRID_Perfil(string buscar)
        {
            try
            {
                LOG_Perfil logica = new LOG_Perfil();
                List<MOD_Perfil> Lista = logica.SEL_Grid_Perfil(buscar);

                return Lista;
            }
            catch (Exception )
            {
                throw ;
            }
        }
Beispiel #5
0
 public MOD_Perfil SEL_GRID_BY_ID_Perfil(int Codigo)
 {
     try
     {
         LOG_Perfil logica = new LOG_Perfil();
         MOD_Perfil obj = logica.SEL_Grid_By_Id_Perfil(Codigo);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Beispiel #6
0
 public List<MOD_Perfil> SEL_DL_Perfil(int codigo)
 {
     try
     {
         LOG_Perfil logica = new LOG_Perfil();
         List<MOD_Perfil> lista = logica.SEL_DL_PUESTO(codigo);
         return lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }