Example #1
0
 /// <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));
 }