public DTO.StudyProductDTO GetProduct(int ProductId)
        {
            IProductRepository repo = new ProductRepository();
            var result  = repo.GetProduct(ProductId);
            var result1 = ConverterDTO.StudyProducttoStudyProductDTO(result);

            return(result1);
        }