public OpenModule(IChestService chestService, ICapsuleService capsuleService, ISphereService sphereService) { this.chestService = chestService; this.capsuleService = capsuleService; this.sphereService = sphereService; }
public DeliveryController(IDeliveryService deliveryService, ICapsuleService capsuleService) { _deliveryService = deliveryService ?? throw new ArgumentNullException(nameof(deliveryService)); _capsuleService = capsuleService ?? throw new ArgumentNullException(nameof(capsuleService)); }
public CapsuleSummaryViewComponent(ICapsuleService capsuleService) => _capsuleService = capsuleService;
public CapsuleController(IMessageService messageService, ICapsuleService capsuleService) { _messageService = messageService ?? throw new ArgumentNullException(nameof(messageService)); _capsuleService = capsuleService ?? throw new ArgumentNullException(nameof(capsuleService)); }