Exemplo n.º 1
0
		public static bool IsLogined(SQLiteConnection connection)
		{
			DataProvider dtb = new DataProvider (connection);
			if (dtb.GetMainUser () != null)
				return true;
			return false;
		}
Exemplo n.º 2
0
		public static User GetMainUser(SQLiteConnection connection)
		{
			DataProvider dtb = new DataProvider (connection);
			return dtb.GetMainUser ();
		}