Exemplo n.º 1
0
 public SignUp(string JsonFilePath, Utility.UIStyling UIStyling, UIBuffer UIBuffer)
 {
     _UIBuffer        = UIBuffer;
     _userService     = new UserService("", JsonFilePath);
     _UIStyling       = UIStyling;
     _passwordHider   = new Utility.PasswordHider(_UIBuffer);
     _dataValidations = new Utility.DataValidations();
 }
 public Login(string JsonFilePath, Utility.UIStyling UIStyling, UIBuffer UIBuffer)
 {
     _UIStyling             = UIStyling;
     _UIBuffer              = UIBuffer;
     _passwordHider         = new Utility.PasswordHider(_UIBuffer);
     _authenticationService = new AuthenticationService(JsonFilePath);
     _JsonFilePath          = JsonFilePath;
     _dataValidations       = new Utility.DataValidations();
 }