Example #1
0
        public void InsertConfigurationServiceTest()
        {
            InstallationServiceBusiness installationServiceBusiness = new InstallationServiceBusiness();
            ConfiguracionServiceRequest configurationService        = new ConfiguracionServiceRequest();

            configurationService.CodigoCaja     = 4;
            configurationService.IpEstaticaCaja = "192.192";
            configurationService.CodigoEmpleado = 4;
            var result = installationServiceBusiness.InsertConfigurationBox(configurationService);

            Assert.IsTrue(result.Data.CodeNumber == "200");
        }
Example #2
0
        public ResponseBussiness <OperationResponse> InsertConfigurationBox(ConfiguracionServiceRequest configurationServiceRequest)
        {
            ResponseBussiness <OperationResponse> response = new InstallationServiceBusiness().InsertConfigurationBox(configurationServiceRequest);

            return(response);
        }