Ejemplo n.º 1
0
        public Boolean AddProductPicture(ProductPictureModel model)     //add Product Picture
        {
            var entity = _mapper.Map <ProductPictureModel, ProductPicture>(model);

            if (obj.AddProductPicture(entity))
            {
                return(true);
            }
            return(false);
        }