public StageDTO Put(int theaterId, int stageId, [FromBody] StageBindingModel stage)
 {
     return(_stageService.Update(stageId, stage));
 }
 public StageDTO Post(int theaterId, [FromBody] StageBindingModel stage)
 {
     return(_stageService.Add(theaterId, stage));
 }