public ResponseMessage <User> Create(RegisterUserRequest data)
        {
            //TODO: RegisterUserRequest beletenni minden olyan tulajdonsagot ami szukseges a User es a Profile objektumok letrehozasara
            ResponseMessage <User> response = new ResponseMessage <User>();

            try
            {
                User user = new User(data);
                user.Password           = PasswordHasher.Create(data.Password, data.Email);
                user.PublicID           = UniqKeyGenerator.Generate();
                response.ResponseObject = _userRepository.Create(user);

                Profile profile = data.ConvertTo <Profile>();
                profile.ID = user.PublicID;
                _profileRepository.Create(profile);


                response.IsSuccess    = true;
                response.ErrorMessage = "Success";
            }
            catch (Exception ex)
            {
                response.IsSuccess    = false;
                response.ErrorMessage = ex.Message;
            }

            return(response);
        }