51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Interfaces;
|
|
using SQLite.Net;
|
|
|
|
namespace SQLiteRepository
|
|
{
|
|
public class SQLiteRepository:IRepository
|
|
{
|
|
private SQLiteConnection _connection;
|
|
public UserList GetUsers()
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public User GetUser(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public TimeLogList GetTimeLogs(int userId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public TimeLogList GetTimeLogs(int userId, int calendarWeek)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IdentifierList GetUnassignedList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public OperationResponse UpdateUser(User user)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public OperationResponse LogEventTime(Identifier identifier)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|