public CustomerInfrastructureNetworkFirewallsControlController(
            CustomerInfrastructureNetworkFirewallsControl instance) : base(instance)
        {
            this.controlCustomerInfrastructureNetworkFirewalls = instance;

            if (LicenseManager.UsageMode != LicenseUsageMode.Designtime)
            {
                this.srvCustomerInfrastructureNetworkFirewall = SamsaraAppContext.Resolve <ICustomerInfrastructureNetworkFirewallService>();
                this.srvCustomerInfrastructureNetwork         = SamsaraAppContext.Resolve <ICustomerInfrastructureNetworkService>();
                this.srvFirewallBrand = SamsaraAppContext.Resolve <IFirewallBrandService>();
            }

            this.InitializeControlControls();
        }
        public CustomerInfrastructureNetworkCablingsControlController(
            CustomerInfrastructureNetworkCablingsControl instance) : base(instance)
        {
            this.controlCustomerInfrastructureNetworkCablings = instance;

            if (LicenseManager.UsageMode != LicenseUsageMode.Designtime)
            {
                this.srvCustomerInfrastructureNetworkCabling = SamsaraAppContext.Resolve <ICustomerInfrastructureNetworkCablingService>();
                this.srvCustomerInfrastructureNetwork        = SamsaraAppContext.Resolve <ICustomerInfrastructureNetworkService>();
                this.srvNetworkCablingType = SamsaraAppContext.Resolve <INetworkCablingTypeService>();
            }

            this.InitializeControlControls();
        }