public GatheringController(IGatheringService gatheringService)
 {
     this._gatheringService = gatheringService;
 }
Esempio n. 2
0
 /*Section="Constructor-1", IsCustomized=true*/
 public StoreOrderService(ILoggerFactory loggerFactory, IGatheringService gatheringService)
 {
     _logger = loggerFactory.GetLogger(typeof(StoreOrderService));
     this._gatheringService = gatheringService;
 }
Esempio n. 3
0
 /// <summary>
 /// Initialize the Gatherings controller
 /// </summary>
 /// <param name="gatheringService"></param>
 public GatheringsController(IGatheringService gatheringService)
 {
     _gatheringService = gatheringService;
 }