Пример #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 virtual async Task DeleteAsync(GlobalGetByAppIdInputDto input)
 {
     await GlobalConfigurationAppService.DeleteAsync(input);
 }
 public async Task <GlobalConfigurationDto> UpdateAsync(GlobalUpdateDto input)
 {
     return(await GlobalConfigurationAppService.UpdateAsync(input));
 }
 public async Task <GlobalConfigurationDto> GetAsync(GlobalGetByAppIdInputDto input)
 {
     return(await GlobalConfigurationAppService.GetAsync(input));
 }
 public async Task <GlobalConfigurationDto> CreateAsync(GlobalCreateDto globalCreateDto)
 {
     return(await GlobalConfigurationAppService.CreateAsync(globalCreateDto));
 }