本文整理汇总了C#中OpenCBS.CoreDomain.Contracts.Savings.SavingBookContract.ChargeOverdraftFee方法的典型用法代码示例。如果您正苦于以下问题:C# SavingBookContract.ChargeOverdraftFee方法的具体用法?C# SavingBookContract.ChargeOverdraftFee怎么用?C# SavingBookContract.ChargeOverdraftFee使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OpenCBS.CoreDomain.Contracts.Savings.SavingBookContract
的用法示例。
在下文中一共展示了SavingBookContract.ChargeOverdraftFee方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Charge_overdaft_fees
public void Charge_overdaft_fees()
{
SavingBookContract saving = new SavingBookContract(ApplicationSettings.GetInstance(""),
new User(), new DateTime(2009, 01, 01), null)
{
Product = _bookProduct,
AgioFees = 0.01,
ChequeDepositFees = 100,
DepositFees = 50,
CloseFees = 100,
ReopenFees = 100,
OverdraftFees = 100
};
saving.FirstDeposit(1000, new DateTime(2009, 01, 01), null, new User(), Teller.CurrentTeller);
Currency currency = new Currency() { UseCents = true, Code = "SOM", Id = 1, IsPivot = true, Name = "SOM" };
Assert.AreEqual(1000, saving.GetBalance().Value);
//Below, we explicitly implement withdraw method from <Saving services>.<Withdraw>, since withdraw method of 'saving' object doesn't implement
// overdraft fee by default
List<SavingEvent> withdrawEvents = saving.Withdraw(1100, new DateTime(2009, 1, 2), "withdraw", new User(), false, null);
if (saving.GetBalance() < 0 && !saving.InOverdraft)
{
saving.ChargeOverdraftFee(new DateTime(2009, 1, 2), new User());
}
Assert.AreEqual(-200, saving.GetBalance().Value);
}