独自の IAuthRepository を実装していますが、UpdateUserAuth がどうあるべきかわかりません。IUserAuthRepository の署名は次のとおりです。
UserAuth UpdateUserAuth(UserAuth existingUser, UserAuth newUser, string password);
ServiceStack コードでは、RegistrationService で 2 つの異なる方法で使用されます。
UserAuthRepo.UpdateUserAuth(newUserAuth, existingUser, request.Password)
UpdateUserAuth メソッドで
this.UserAuthRepo.UpdateUserAuth(existingUser, newUserAuth, request.Password);
Post メソッドで
それは間違いですか、それとも望ましい機能ですか?