Created
April 13, 2020 14:11
-
-
Save DannyRusnok/40cdf594a70c612d1a090269b922c5c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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