Exemple #1
0
 public Login GetLogin(int id)
 {
     return(lCtrl.GetLogin(id));
 }
Exemple #2
0
 /// <summary>
 /// Calls the method GetLogin from the login controller
 /// </summary>
 /// <param name="username">the username</param>
 /// <returns>returns the method with a login
 /// from login controller</returns>
 public Login GetLogin(string username)
 {
     return(loginCtrl.GetLogin(username));
 }