Exemple #1
0
        public ActionResult <IList <ProductViewModel> > GetAll()
        {
            var products = _mapper.Map <IList <ProductViewModel> >(_iProductApplication.GetAll());

            return(CustomResponse(products));
        }