public void Create(MovieToDal m) { _repo.Insert(m.toDal()); }
public void Add(Movie item) { item.Id = Guid.NewGuid(); MovieRepo.Insert(item); }