public IDataResult <List <ProductDetailDto> > GetAllProductDetails()
 {
     return(new SuccessDataResult <List <ProductDetailDto> >(_productDal.GetAllProductDetails()));
 }