Use DateTime.Now instead of DateTime.UtcNow

This commit is contained in:
2025-11-24 15:05:43 +09:00
parent 3ccccd2467
commit be3d369575
13 changed files with 24 additions and 24 deletions

View File

@ -77,7 +77,7 @@ namespace Hcs.WebApp.Services
{
Type = type,
InitiatorId = initiatorId,
CreatedAt = DateTime.UtcNow
CreatedAt = DateTime.Now
};
if (args != null)
@ -99,7 +99,7 @@ namespace Hcs.WebApp.Services
{
CampaignId = campaignId,
Type = type,
CreatedAt = DateTime.UtcNow
CreatedAt = DateTime.Now
});
}
await context.Operations.AddRangeAsync(operations);