Finished Settings page

This commit is contained in:
2025-11-12 17:06:14 +01:00
parent a608f98497
commit e0bf95060a
38 changed files with 675 additions and 34 deletions

View File

@@ -0,0 +1,22 @@
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();
}
}