/// <summary> /// Calls the method GetUserByUsername from the user controller /// </summary> /// <param name="username">the username for the user</param> /// <returns>returns the method with a user from the specified username /// from user controller</returns> public User GetUserByUsername(string username) { return(userCtrl.GetUserByUsername(username)); }