Exemplo n.º 1
0
        public IList <ConfigItem> GetConfigItems(GetConfigItemsArgs args)
        {
            if (args == null)
            {
                throw new ArgumentNullException(nameof(args));
            }
            var list = _repository.GetConfigItems().OrderBy(x => x.Name).ToList();

            return(list);
        }