public CollectiveDayController(ICollectiveService <CollectiveDayController> collectiveService,
                                ICollectiveDayRepository collectiveDayRepository,
                                ICollectiveDayService collectiveDayService) : base(collectiveService)
 {
     _collectiveDayRepository = collectiveDayRepository;
     _collectiveDayService    = collectiveDayService;
 }
 public CollectiveProductSnapshotController(ICollectiveService <CollectiveProductSnapshotController> collectiveService,
                                            ICollectiveProductSnapshotRepository collectiveProductSnapshotRepository) : base(collectiveService)
 {
     _collectiveProductSnapshotRepository = collectiveProductSnapshotRepository;
 }
 public CollectiveCustomerController(ICollectiveService <CollectiveCustomerController> collectiveService,
                                     ICollectiveCustomerRepository collectiveCustomerRepository) : base(collectiveService)
 {
     _collectiveCustomerRepository = collectiveCustomerRepository;
 }
 public ProductForCollectiveController(ICollectiveService<ProductForCollectiveController> collectiveService,
     IProductForCollectiveRepository productForCollectiveRepository) : base(collectiveService)
 {
     _productForCollectiveRepository = productForCollectiveRepository;
 }
Пример #5
0
 protected CollectiveController(ICollectiveService <T> collectiveService) : base(collectiveService)
 {
     CollectiveService       = collectiveService;
     CollectiveDayRepository = CollectiveService.CollectiveDayRepository;
 }
 public CollectiveOrderController(ICollectiveService <CollectiveOrderController> service,
                                  ICollectiveOrderRepository collectiveOrderRepository) : base(service)
 {
     _collectiveOrderRepository = collectiveOrderRepository;
 }