Esempio n. 1
0
        /// <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;
        }
Esempio n. 2
0
 public DeliveryController(ISecurityUserService securityUserService, IDeliveryGroupService deliveryGroupService)
 {
     _securityUserService  = securityUserService;
     _deliveryGroupService = deliveryGroupService;
 }
Esempio n. 3
0
 public DeliveryGroupController(IDeliveryGroupService deliveryGroupService, IMapper mapper)
 {
     _deliveryGroupService = deliveryGroupService;
     _mapper = mapper;
 }