public void PriceRangeRepository_NullPropertyMatrixContext_ThrowsException()
 {
     //act
     var sut = new PriceRangeRepository(null, _mockPriceRangeMapper.Object);
 }
 public void PriceRangeRepository_NullPriceRangeMapper_ThrowsException()
 {
     //act
     var sut = new PriceRangeRepository(_mockContext.Object, null);
 }