public UserAutentication Login(UserAutentication userobj)
 {
     return(UserGas.ResolveUserlogin(userobj));
 }
 public UserAutentication CrearUsuario(UserAutentication user)
 {
     return(UserGas.CrearUsuario(user));
 }
 public UserAutentication SearchToken(Token tokenObj)
 {
     return(UserGas.SearchToken(tokenObj));
 }
 public bool VerificarUsuarioActivo(UserAutentication user)
 {
     return(UserGas.VerificarUsuarioActivo(user));
 }
 public string GetToken(Token token)
 {
     return(UserGas.GetToken(token));
 }