23 lines
560 B
C#
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();
|
|
}
|
|
}
|
|
}
|