Exemplo n.º 1
0
 public ActionResult <IEnumerable <Manufacturer> > Get()
 {
     return(IManufacturerRepo.GetAll());
 }
Exemplo n.º 2
0
        public IActionResult Index()
        {
            var manuf = _manufacturer.GetAll();

            return(View(manuf));
        }