Beispiel #1
0
        public ActionResult <IEnumerable <Good> > Get()
        {
            _logger.LogInformation("Call Get goods method");
            var serviceCallResult = _goodsManager.GetGoods().ToList();

            return(serviceCallResult);
        }