Пример #1
0
 public IEnumerable <Fields> Get()
 {
     return(_repository.GetAll());
 }
Пример #2
0
        public ActionResult GetAll()
        {
            var fields = _fieldsRepository.GetAll();

            return(Ok(fields));
        }