// GET: Defects
 public IActionResult Index()
 {
     return(View(defectsRepository.GetAll()));
 }
Example #2
0
 public IEnumerable <Defect> GetAllDefects()
 {
     return(_defectRepository.GetAll());
 }