// C# public class BusinessAccountclass : IAccount, ICustomer, IPortfolio { // Code to implement class here. }
// C# public interface IAccount { void DeductFees(IFeeSchedule feeSchedule); void PostInterest(); decimal Balance { get; set; } }
Thank you for posting at Dotnetfunda [Administrator]
Login to post response