Пример #1
0
 public PlayDTO Put(int theaterId, int playId, [FromBody] PlayBindingModel play)
 {
     return(_playService.Update(playId, play));
 }
Пример #2
0
 public PlayDTO Post(int theaterId, [FromBody] PlayBindingModel play)
 {
     return(_playService.Add(theaterId, play));
 }