コード例 #1
0
        public GroupController(IConfiguration config, ILogger <GroupController> logger)
        {
            _logger = logger;

            this.groupService          = new Services.GroupService(config, _logger);
            this.IdentityAccessService = new Services.IdentityAccessService(config);
        }
コード例 #2
0
 public GroupController(Services.GroupService groupService)
 {
     _groupService = groupService;
 }
コード例 #3
0
 public GroupController()
 {
     this.thingGroupService     = new Services.GroupService();
     this.IdentityAccessService = new Services.IdentityAccessService();
 }