示例#1
0
        public ResponseBussiness <ConfigGeneralesCajaTiendaResponse> getGeneralConfig()
        {
            TokenDto token = new TokenService().Get();
            ResponseBussiness <ConfigGeneralesCajaTiendaResponse> response = new ConfigGeneralesCajaTiendaBusiness(token).getConfigs();

            return(response);
        }
示例#2
0
        public void getConfig()
        {
            TokenDto token = new TokenDto(3, 3215);
            ConfigGeneralesCajaTiendaBusiness configGeneralesCajaTiendaBusiness = new ConfigGeneralesCajaTiendaBusiness(token);

            Assert.IsNotNull(configGeneralesCajaTiendaBusiness.getConfigs());
        }