コード例 #1
0
        public static void InventoryLimit(InventoryLimitModel table)
        {
            string update = SqliteQuery.Update("InventoryLimit", table.Headers, table.ID);

            SqliteDataAccess.ExecuteQuery(update, table);
        }
コード例 #2
0
ファイル: Delete.cs プロジェクト: sabawcoder/cims
        public static void InventoryLimit(InventoryLimitModel table)
        {
            string Delete = SqliteQuery.Delete("InventoryLimit", table.ID);

            SqliteDataAccess.ExecuteQuery(Delete, table);
        }
コード例 #3
0
ファイル: Create.cs プロジェクト: sabawcoder/cims
        public static void InventoryLimit(InventoryLimitModel table)
        {
            string insert = SqliteQuery.Create("InventoryLimit", table.Headers);

            SqliteDataAccess.ExecuteQuery(insert, table);
        }