public Account(
            bool allowOverdrafts,
            INotificationService notificationSvc,
            IOverdraftService overdraftSvc,
            IBouncedCheckService bouncedCheckSvc)
        {
            _allowOverdrafts = allowOverdrafts;

            _notificationSvc = notificationSvc;
            _overdraftSvc    = overdraftSvc;
            _bouncedCheckSvc = bouncedCheckSvc;
        }