public Action GetByActionId(string actionId) { // TODO: Prod app would need some error handling like for bad/deleted Id's etc. return(_sqlConnection.Get <Action>(actionId)); }
public Project GetByProjectId(string projectId) { // TODO: Prod app would need some error handling like for bad/deleted Id's etc. return(_sqlConnection.Get <Project>(projectId)); }
public CollectedItem Get(int id) { return(_connection.Get <CollectedItem>(id)); }
public Item Get(int id) { return(_connection.Get <Item>(id)); }
public ItemOfStuff GetByStuffId(string stuffId) { // TODO: Prod app would need some error handling like for bad/deleted Id's etc. return(_sqlConnection.Get <ItemOfStuff>(stuffId)); }