public void CreateUser() { try { if (_userType != UserTypeDirectory.Guest) { _userService.Add(); } else { _userService.AddAsGuest(); } } catch (Exception ex) { throw new Exception(ex.ToString()); } }