public DataSet ConsultarEmpleadoLicencia(EmpleadoLicencia obj)
 {
     try
     {
         return(ClsEmpleadoLicencia.Consultar(obj));
     }
     catch (Exception)
     {
         return(null);
     }
 }
 public Response ProcesarEmpleadoLicencia(EmpleadoLicencia obj)
 {
     try
     {
         return(ClsEmpleadoLicencia.Procesar(obj));
     }
     catch (Exception e)
     {
         return(new Response
         {
             IsSuccess = false
         });
     }
 }