Insert() public method

Submits a new product for persistence.
public Insert ( ProductDTO newProduct ) : void
newProduct openTill.Domain.DTO.ProductDTO New product to save
return void
 public void NullDTOProductInsertException()
 {
     ProductRepository testProductRepository = new ProductRepository();
     testProductRepository.Insert(null);
 }