Exemplo n.º 1
0
 public List <Menu> ListarMenuPermisos(Int32 IdEmpleado, Int32 opcion)
 {
     try
     {
         return(PermisoDAO.getInstance().ListarMenuPermisos(IdEmpleado, opcion));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemplo n.º 2
0
 public bool RegistrarEliminarPermiso(Permiso objPermiso, Int32 opcion)
 {
     try
     {
         return(PermisoDAO.getInstance().RegistrarEliminarPermiso(objPermiso, opcion));
     }
     catch (Exception)
     {
         throw;
     }
 }