Exemplo n.º 1
0
        public async Task <ModelConfigurationDto> GetByIdAsync(Guid id)
        {
            var modelConfig = await _entityConfigRepository.GetAll().Where(m => m.Id == id).FirstOrDefaultAsync();

            if (modelConfig == null)
            {
                var exception = new EntityNotFoundException("Model configuration not found");
                exception.MarkExceptionAsLogged();
                throw exception;
            }

            return(await _modelConfigurationProvider.GetModelConfigurationAsync(modelConfig));
        }
Exemplo n.º 2
0
        public async Task <ModelConfigurationDto> GetByNameAsync(string name, string @namespace)
        {
            var dto = await _modelConfigurationProvider.GetModelConfigurationOrNullAsync(@namespace, name);

            if (dto == null)
            {
                var exception = new EntityNotFoundException("Model configuration not found");
                exception.MarkExceptionAsLogged();
                throw exception;
            }

            return(dto);
        }