public TenantMappingSupportedModelFactory(
     ITenantMappingService tenantMappingService,
     ITenantService tenantService)
 {
     _tenantMappingService = tenantMappingService;
     _tenantService        = tenantService;
 }
Beispiel #2
0
 public DeviceApiService(
     ITenantMappingService tenantMappingService,
     IRepository <Device> deviceRepository)
 {
     _tenantMappingService = tenantMappingService;
     _deviceRepository     = deviceRepository;
 }
Beispiel #3
0
 public DtoHelper(
     IAclService aclService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IPermissionService permissionService)
 {
     _aclService           = aclService;
     _tenantMappingService = tenantMappingService;
     _tenantService        = tenantService;
     _permissionService    = permissionService;
 }
Beispiel #4
0
 public LicenseController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     ILicenseApiService licenseApiService)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _licenseApiService = licenseApiService;
 }
 public WebHookFiltersController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IWebHookService webHookService)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _filterManager = webHookService.GetWebHookFilterManager();
 }
Beispiel #6
0
 public ItemsController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IItemApiService itemApiService,
     IRepository <Item> itemRepository)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _itemApiService = itemApiService;
     _itemRepository = itemRepository;
 }
 public ShelfLocationController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IShelfLocationApiService shelfLocationApiService,
     IRepository <ShelfLocation> shelfLocationRepository)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _shelfLocationApiService = shelfLocationApiService;
     _shelfLocationRepository = shelfLocationRepository;
 }
 public TransactionsController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     ITransactionApiService transactionApiService,
     IRepository <Transaction> transactionRepository)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _transactionApiService = transactionApiService;
     _transactionRepository = transactionRepository;
 }
Beispiel #9
0
 public DeviceController(
     IDeviceService deviceService,
     ITenantService tenantService,
     ITenantMappingService tenantMappingService,
     IDeviceModelFactory deviceModelFactory,
     IPermissionService permissionService,
     IUserActivityService userActivityService)
 {
     _deviceService        = deviceService;
     _tenantService        = tenantService;
     _tenantMappingService = tenantMappingService;
     _deviceModelFactory   = deviceModelFactory;
     _permissionService    = permissionService;
     _userActivityService  = userActivityService;
 }
Beispiel #10
0
 public BaseApiController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService)
 {
     JsonFieldsSerializer = jsonFieldsSerializer;
     AclService           = aclService;
     UserService          = userService;
     TenantMappingService = tenantMappingService;
     TenantService        = tenantService;
     UserActivityService  = userActivityService;
 }
 public WebHookRegistrationsController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IWebHookService webHookService,
     IHttpContextAccessor httpContextAccessor)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _manager             = webHookService.GetWebHookManager();
     _store               = webHookService.GetWebHookStore();
     _filterManager       = webHookService.GetWebHookFilterManager();
     _httpContextAccessor = httpContextAccessor;
 }
Beispiel #12
0
 public PushNotificationsController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IPushNotificationApiService pushNotificationApiService,
     IPushNotificationService pushNotificationService,
     IStoreService storeService)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _pushNotificationApiService = pushNotificationApiService;
     _pushNotificationService    = pushNotificationService;
     _storeService = storeService;
 }
Beispiel #13
0
 public RolesController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IRoleApiService roleApiService,
     IPermissionService permissionService,
     IFactory <Role> factory)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _roleApiService    = roleApiService;
     _permissionService = permissionService;
     _factory           = factory;
 }
Beispiel #14
0
 public DevicesController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IFactory <Device> factory,
     IDtoHelper dtoHelper,
     IDeviceService deviceService,
     IDeviceApiService deviceApiService)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _factory          = factory;
     _dtoHelper        = dtoHelper;
     _deviceService    = deviceService;
     _deviceApiService = deviceApiService;
 }
Beispiel #15
0
 public UsersController(
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     IUserService userService,
     ITenantMappingService tenantMappingService,
     ITenantService tenantService,
     IUserActivityService userActivityService,
     IUserApiService userApiService,
     IGenericAttributeService genericAttributeService,
     IEncryptionService encryptionService,
     IStoreService storeService,
     IFactory <User> factory)
     : base(jsonFieldsSerializer, aclService, userService, tenantMappingService, tenantService, userActivityService)
 {
     _userApiService          = userApiService;
     _genericAttributeService = genericAttributeService;
     _encryptionService       = encryptionService;
     _storeService            = storeService;
     _factory = factory;
 }