Ejemplo n.º 1
0
        public async Task <GlobalConfigurationDto> GetAsync(GlobalGetByAppIdInputDto input)
        {
            ICurrentClient client        = null;
            var            currentClient = LazyGetRequiredService(ref client);

            return(await GlobalConfigurationAppService.GetAsync(input));
        }
        public virtual async Task <PagedResultDto <GlobalConfigurationDto> > GetAsync(GlobalGetByPagedInputDto input)
        {
            var user = CurrentUser;

            return(await GlobalConfigurationAppService.GetAsync(input));
        }
 public async Task <GlobalConfigurationDto> GetAsync(GlobalGetByAppIdInputDto input)
 {
     return(await GlobalConfigurationAppService.GetAsync(input));
 }