コード例 #1
0
 public AuctionController(IUserProvider userProvider, IAuctionService auctionService, ISlotStorage slotStorage)
 {
     _userProvider   = userProvider;
     _auctionService = auctionService;
     _slotStorage    = slotStorage;
 }
コード例 #2
0
ファイル: UrlController.cs プロジェクト: malevy/yaus
 public UrlController(ILoggerFactory loggerFactory, ISlotStorage slotStorage, IUrlStore urlStore)
 {
     _logger      = loggerFactory.CreateLogger <UrlController>();
     _slotStorage = slotStorage;
     _urlStore    = urlStore;
 }
コード例 #3
0
 public WebsocketController(ISlotStorage slotStorage)
 {
     _slotStorage = slotStorage;
 }