Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DannyRusnok/40cdf594a70c612d1a090269b922c5c6 to your computer and use it in GitHub Desktop.
Save DannyRusnok/40cdf594a70c612d1a090269b922c5c6 to your computer and use it in GitHub Desktop.
public class MovieService
{
public void Create(string title, string decription, List<Actor> actors) { ... }
public void AddActor(Movie movie, Actor actor){ ... }
public List<Actor> GetMainActors(Movie movie) { ... }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment