// GET: api/CoverageType
 public IEnumerable <CoverageTypeDto> Get()
 {
     return(_coverageTypeService.GetAll());
 }
Esempio n. 2
0
        public IActionResult GetAll()
        {
            var resultList = _coverageTypeService.GetAll();

            return(Ok(resultList));
        }