FlexitimeTracker/FlexitimeUI/FlexitimeAPI/Services/TimePersistenceService.cs
2023-04-11 20:17:20 +01:00

23 lines
560 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Flexitime.Objects;
using FlexitimeAPI.Interfaces;
namespace FlexitimeAPI.Services
{
public class TimePersistenceService:ITimePersistenceService
{
public UserState StoreTime(TimeLog logEntry)
{
throw new NotImplementedException();
}
public void UpdateTimeLog(Guid logToUpdate, TimeLog updatedLogEntry)
{
throw new NotImplementedException();
}
}
}