Skip to content

Commit

Permalink
ObjectStateの実装の誤りを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
KentaHizume committed Feb 27, 2024
1 parent 6ceb8cc commit d79cbe6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit d79cbe6

Please sign in to comment.