/// <summary> /// Gets the user with the specified username /// </summary> /// <param name="username"></param> /// <returns></returns> public async Task <ApplicationUser> GetUserByUsername(string username) { return(await _repo.GetUserByUsername(username)); }