Esempio n. 1
0
 public CrowdController(ICrowdService crowdService, IPartImageService partImageService, IDiscountService discountService, IParticipationService participationService)
 {
     _discountService      = discountService;
     _crowdService         = crowdService;
     _partImageService     = partImageService;
     _participationService = participationService;
 }
Esempio n. 2
0
 public CrowdController(ICrowdService crowdService,IPartImageService partImageService, IDiscountService discountService,IParticipationService  participationService)
 {
     _discountService = discountService;
     _crowdService = crowdService;
     _partImageService = partImageService;
     _participationService = participationService;
 }
Esempio n. 3
0
 public HomeController(IFollowerService followerService,
                       ICrowdService crowdService,
                       IWorkContext workContext
                       )
 {
     _workContext     = workContext;
     _followerService = followerService;
     _crowdService    = crowdService;
 }
Esempio n. 4
0
 public CrowdApiController(ICrowdService crowdService, IPartImageService partImageService, IDiscountService discountService, IFollowerService followerService, IPhoneService phoneService, IParticipationService participationService)
 {
     _discountService = discountService;
     _crowdService = crowdService;
     _partImageService = partImageService;
     _followerService = followerService;
     _phoneService = phoneService;
     _participationService = participationService;
 }
Esempio n. 5
0
 public HomeController(IFollowerService followerService,
     ICrowdService crowdService,
     IWorkContext workContext
     )
 {
     _workContext = workContext;
     _followerService = followerService;
     _crowdService = crowdService;
 }
Esempio n. 6
0
 public CrowdApiController(ICrowdService crowdService, IPartImageService partImageService, IDiscountService discountService, IFollowerService followerService, IPhoneService phoneService, IParticipationService participationService)
 {
     _discountService      = discountService;
     _crowdService         = crowdService;
     _partImageService     = partImageService;
     _followerService      = followerService;
     _phoneService         = phoneService;
     _participationService = participationService;
 }
Esempio n. 7
0
 public CrowdApiController(ICrowdService service,
                           ILogger <CrowdApiController> logger) : base(logger)
 {
     _service = service;
 }
Esempio n. 8
0
 public CrowdController(ICrowdService crowdService)
 {
     _crowdService = crowdService;
 }