FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/Constants.cs
chris.watts90@outlook.com bc1947a31f Move the database calls/procedures out into the SQLiteRepository, IRepository implementation.
created SQLiteProcedures to hold all the strings for procs. Constants also serves similar purpose.
renamed Class1 to SQLiteRepository.cs
added all the necessary nuget packages for SQLite.Net-PCL
2017-01-31 21:59:42 +00:00

7 lines
126 B
C#

namespace SQLiteRepository
{
internal class Constants
{
public const int UNASSIGNED_CARD_USER_ID = -1;
}
}