public Product GetByIdWithCategories(int id)
        {
            if (id == 0)
            {
                throw new ArgumentNullException(nameof(id));
            }

            return(_productDal.GetByIdWithCategories(id));
        }
 public Product GetByIdWithCategories(int id)
 {
     return(_productDal.GetByIdWithCategories(id));
 }
Exemplo n.º 3
0
 public Product GetByIdWithCategories(int id)
 {
     return(_productDal.GetByIdWithCategories(id));
     //throw new NotImplementedException();
 }