Beispiel #1
0
 public int Create(EntryCreate model)
 {
     return(entryService.Create(model));
 }
Beispiel #2
0
 public ActionResult <Entry> Create(Entry entry)
 {
     _entryService.Create(entry);
     return(CreatedAtAction("Get", new { id = entry.Id }));
 }