public void TestConvertStringToDecimalWhenStringIsEmpty()
 {
     Assert.AreEqual(0, ServicesHelper.ConvertStringToDecimal(String.Empty, true));
 }
 public void TestConvertStringToDecimalWhenStringIsNull()
 {
     Assert.AreEqual(0, ServicesHelper.ConvertStringToDecimal(null, true));
 }