Started on #16, nothing is hooked up yet.

This commit is contained in:
tidusjar 2016-03-17 17:17:34 +00:00
parent f4a60da40d
commit 07b42ffd50
14 changed files with 355 additions and 12 deletions

View file

@ -56,9 +56,9 @@ namespace PlexRequests.Core
Repo.Delete(entity);
}
public void UpdateRequest(int originalId, RequestedModel model)
public void UpdateRequest(RequestedModel model)
{
model.Id = originalId;
Repo.Update(model);
}