Esempio n. 1
0
 public IActionResult Insert([FromBody] Screening screening)
 {
     return(Ok(db.CreateScreening(screening.Id, Convert.ToInt32(screening.MovieId), Convert.ToInt32(screening.AuditoriumId), screening.ScreeningStart)));
 }