Exemple #1
0
            private bool canAddMoneyNote()
            {
                if (this.collector == null)
                {
                    return(false);
                }
                if (this.moneyNote == null)
                {
                    return(false);
                }
                if (collector.GetMoneyNote(this.moneyNote.Type) != null)
                {
                    return(false);
                }

                return(true);
            }