public static void AddLT(LichThi lt,SQLiteConnection connection ) { DataProvider dtb = new DataProvider (connection); if (dtb.GetLT (lt.MaMH) == null) { dtb.AddLT (lt); } }
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; }