/// <summary>
        /// コンストラクタ
        /// </summary>
        /// <param name="settings">設定</param>
        /// <param name="service">配信グループ用サービスクラス</param>
        public DeliveryGroupsController(AppSettings settings, IDeliveryGroupService service)
        {
            Assert.IfNull(settings);
            Assert.IfNull(service);

            _settings = settings;
            _service  = service;
        }
 public DeliveryController(ISecurityUserService securityUserService, IDeliveryGroupService deliveryGroupService)
 {
     _securityUserService  = securityUserService;
     _deliveryGroupService = deliveryGroupService;
 }
Exemple #3
0
 public DeliveryGroupController(IDeliveryGroupService deliveryGroupService, IMapper mapper)
 {
     _deliveryGroupService = deliveryGroupService;
     _mapper = mapper;
 }