Exemplo n.º 1
0
 public Credit AddCredit(Credit credit, Movie movie)
 {
     credit.MovieId = movie.Id;
     return(_creditRepo.Insert(credit));
 }