Add skeletons for adding/removing sources/systems

This commit is contained in:
Matt Nadareski
2016-03-29 02:07:37 -07:00
parent 6157f0a870
commit 885fe4b8a4

View File

@@ -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;
}
}
}