Beispiel #1
0
 public string GetErrorText(SignUpFailType type)
 {
     _SingUpErrors.TryGetValue(type, out string errorText);
     if (errorText == null)
     {
         _SingUpErrors.TryGetValue(SignUpFailType.Error, out errorText);
     }
     return(errorText);
 }
Beispiel #2
0
 public void SignUpForbidden(SignUpFailType failReason)
 {
     _view.ShowErrorMessage(_localeWorker.GetErrorText(failReason));
 }
Beispiel #3
0
 public string GetErrorText(SignUpFailType err)
 {
     return(_localeData.GetErrorText(err));
 }
Beispiel #4
0
 public string RegisterUser(string login, string password, string title, out SignUpFailType failType)
 {
     throw new NotImplementedException();
 }