예제 #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);
        }