From 885fe4b8a45a20dd05351d6a429a460b9234de8c Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 29 Mar 2016 02:07:37 -0700 Subject: [PATCH] Add skeletons for adding/removing sources/systems --- DATabase/Helper/DBTools.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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; + } } }