Example #1
0
 public ToursController(IToursService toursService, ITourVariantService tourVariantService)
 {
     this.toursService       = toursService;
     this.tourVariantService = tourVariantService;
 }
Example #2
0
 public TourVariantServiceTest(TourVariantsFixture fixture)
 {
     this.fixture = fixture;
     service      = new TourVariantsService(mockUnit.Object, mockMapper.Object, null);
 }