Use DateTime.Now instead of DateTime.UtcNow
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user