22 lines
615 B
C#
22 lines
615 B
C#
using WorkTime.Models;
|
|
using WorkTime.Models.Repositories;
|
|
|
|
namespace WorkTime.Database.Repositories;
|
|
|
|
internal sealed class TimeEntryRepository : ITimeEntryRepository {
|
|
public Task<IEnumerable<TimeEntry>> GetTimeEntries() {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<IEnumerable<TimeEntry>> GetTimeEntries(DateOnly date) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task AddTimeEntry(TimeEntry entry) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task DeleteTimeEntry(Guid id) {
|
|
throw new NotImplementedException();
|
|
}
|
|
} |