コード例 #1
0
        public void Setup()
        {
            _artistStore = new ArtistStore();
            _controller = new ArtistController(_artistStore);

            _controller.Edit(new ArtistViewModel {Id = "", Name = "Iron Maiden"});
        }
コード例 #2
0
 public ArtistController(IArtistStore artistStore)
 {
     _artistStore = artistStore;
 }