public CartViewModel GetCartEntry(int id) { var cartEntry = _cartsRepo.GetCartEntry(id); CartViewModel myCartEntry = _mapper.Map <CartViewModel>(cartEntry); return(myCartEntry); }