Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BROKERS: DateTimeBroker #10

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions UsefulTime.Api/Brokers/DateTimes/DateTimeBroker.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//=================================================
//Copyright (c) Coalition of Good-Hearted Engineers
//Free To Use To Find Comfort and Pease
//=================================================
namespace UsefulTime.Api.Brokers.DateTimes
{
public class DateTimeBroker:IDateTimeBroker
{
public DateTimeOffset GetCurrentDateTimeOffset() =>
DateTimeOffset.UtcNow;
}
}
11 changes: 11 additions & 0 deletions UsefulTime.Api/Brokers/DateTimes/IDateTimeBroker.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
//=================================================
//Copyright (c) Coalition of Good-Hearted Engineers
//Free To Use To Find Comfort and Pease
//=================================================
namespace UsefulTime.Api.Brokers.DateTimes
{
public interface IDateTimeBroker
{
DateTimeOffset GetCurrentDateTimeOffset();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Moq;
using UsefulTime.Api.Models.VideoMetadatas;
using UsefulTime.Api.Models.VideoMetadatas.Exceptions;
using Xunit.Abstractions;

namespace UsefulTime.Unit.Tests.Services.Foundations.VideoMetadatas
{
Expand Down
Loading