예제 #1
0
 public StoryController(StoryContext StoryContextInstance, AccountService AccountServiceInstance)
 {
     this.StoryContextInstance  = StoryContextInstance;
     this.StoryBusinessInstance = new StoryBusiness(this.StoryContextInstance, AccountServiceInstance);
 }
 public void Setup()
 {
     _mockVotationData = new Mock <IVotationData>();
     _sut = new StoryBusiness(_mockVotationData.Object);
 }