public void UpdateFilm(string id, FilmDTO dto)
 {
     var bus = new FilmBUS();
     bus.UpdateFilm(id, dto);
 }