diff --git a/DATabase/Helper/DBTools.cs b/DATabase/Helper/DBTools.cs index 35f7c931..751b43b0 100644 --- a/DATabase/Helper/DBTools.cs +++ b/DATabase/Helper/DBTools.cs @@ -90,5 +90,29 @@ CREATE TABLE IF NOT EXISTS systems ( dbc.Close(); } } + + public static bool AddSource(string name, string url) + { + + return true; + } + + public static bool RemoveSource(int id) + { + + return true; + } + + public static bool AddSystem(string manufacturer, string system) + { + + return true; + } + + public static bool RemoveSystem(int id) + { + + return true; + } } }