public async Task ViewProfile()
 {
     await UserDataService.ViewProfile(Context.User as IGuildUser, Context);
 }
 public async Task ViewProfile([Summary("WhatUserToView")] IUser user)
 {
     await UserDataService.ViewProfile(user as IGuildUser, Context);
 }