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
7 lines
126 B
C#
7 lines
126 B
C#
namespace SQLiteRepository
|
|
{
|
|
internal class Constants
|
|
{
|
|
public const int UNASSIGNED_CARD_USER_ID = -1;
|
|
}
|
|
} |