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