From d79cbe658d111d119bb59636e6a6fe2222bdacd8 Mon Sep 17 00:00:00 2001 From: kentah <158997636+KentaHizume@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:01:37 +0900 Subject: [PATCH] =?UTF-8?q?ObjectState=E3=81=AE=E5=AE=9F=E8=A3=85=E3=81=AE?= =?UTF-8?q?=E8=AA=A4=E3=82=8A=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Maris.ConsoleApp.IntegrationTests/ScopeTests/ObjectState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ConsoleAppWithDI/solution/tests/Maris.ConsoleApp.IntegrationTests/ScopeTests/ObjectState.cs b/samples/ConsoleAppWithDI/solution/tests/Maris.ConsoleApp.IntegrationTests/ScopeTests/ObjectState.cs index 7f18fce7f..4472bcdc8 100644 --- a/samples/ConsoleAppWithDI/solution/tests/Maris.ConsoleApp.IntegrationTests/ScopeTests/ObjectState.cs +++ b/samples/ConsoleAppWithDI/solution/tests/Maris.ConsoleApp.IntegrationTests/ScopeTests/ObjectState.cs @@ -11,7 +11,7 @@ internal ObjectState(Guid objectId, Type objectType, Condition condition, TimePr this.ObjectType = objectType; this.Condition = condition; this.timeProvider = timeProvider; - this.createDate = timeProvider.GetLocalNow().UtcDateTime; + this.createDate = this.timeProvider.GetLocalNow().UtcDateTime; } internal Guid ObjectId { get; private set; }