コード例 #1
0
 public ManageWebhooksService(ISmartsheetService smartsheetService)
 {
     _smartsheetService = smartsheetService;
 }
コード例 #2
0
 public EventsService(EventsContext context, ISmartsheetService smartsheetService)
 {
     _context           = context;
     _smartsheetService = smartsheetService;
 }
コード例 #3
0
 public ManageWebhooksController(ILogger <ManageWebhooksController> logger, ISmartsheetService smartsheetService, IManageWebhooksService manageWebhooksService)
 {
     _logger                = logger;
     _smartsheetService     = smartsheetService;
     _manageWebhooksService = manageWebhooksService;
 }