/// <summary> /// Calls the method DoesUserExist from the login controller /// </summary> /// <param name="login">the login object</param> /// <returns>returns the method that checks if user exists or not /// from login controller</returns> public bool DoesUserExist(Login login) { return(loginCtrl.DoesUserExist(login)); }