mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add skeletons for adding/removing sources/systems
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user