public static void AddLT(LichThi lt,SQLiteConnection connection )
		{
			DataProvider dtb = new DataProvider (connection);
			if (dtb.GetLT (lt.MaMH) == null) {
				dtb.AddLT (lt);
			}
		}
Beispiel #2
0
		public static int AddLT(LichThi lt,SQLiteConnection connection )
		{
			DataProvider dtb = new DataProvider (connection);
			if (dtb.GetLT (lt.MaMH,lt.NamHoc,lt.HocKy) == null) {
				dtb.AddLT (lt);
				return 1;
			}
			return 0;
		}