コード例 #1
0
 public IEnumerable <BRSConfigurationTemplate> GetAll() => _repository.GetAll();
コード例 #2
0
        public IHttpActionResult GetAll()
        {
            var items = _repository.GetAll();

            return(Ok(_mapper.Map <List <BRSConfigurationTemplateModel> >(items)));
        }