Ejemplo n.º 1
0
 public TVShowBusiness(ITVShowRepository tvShowRepository, IConsumeWebService consumerWebService)
 {
     this.tvShowRepository   = tvShowRepository;
     this.consumerWebService = consumerWebService;
 }
Ejemplo n.º 2
0
 public void testInit()
 {
     repo     = new TVShowRepositoryMock();
     service  = new ConsumeWebSeviceMock();
     business = new TVShowBusiness(repo, service);
 }