public IList <GetGoodDto> Get() { return(_service.GetAllGoods()); }
public async Task <IList <Good> > Get() { var goods = await _service.GetAllGoods(); return(goods); }