public async Task <ActionResult> Put(int id, TheaterCreationDto theaterCreationDto)
 {
     return(await Put <TheaterCreationDto, Theater>(id, theaterCreationDto));
 }
 public async Task <ActionResult> Post(TheaterCreationDto theaterCreationDto)
 {
     return(await Post <TheaterCreationDto, Theater, TheaterDto>(theaterCreationDto, "Get"));
 }