示例#1
0
        //konstruktor
        public TerryBankTransfer(string amount  = null, string destNr   = null, string destName = null, string srcNr = null,
                                 string srcName = null, string destBank = null, string srcBank  = null, string title = null, string isSuccessful = null)
        {
            DestinationAccountInfo = new TerryBankAccountInfo()
            {
                AccNr      = destNr,
                OwnersName = destName
            };

            SourceAccountInfo = new TerryBankAccountInfo()
            {
                AccNr      = srcNr,
                OwnersName = srcName
            };

            Amount               = amount;
            DestinationBank      = destBank;
            SourceBank           = srcBank;
            Title                = title;
            IsTransferSuccessful = isSuccessful == "y";
        }
示例#2
0
        //konstruktor
        public TerryBankTransfer(string amount = null, string destNr = null, string destName = null, string srcNr = null,
            string srcName = null, string destBank = null, string srcBank = null, string title = null, string isSuccessful = null)
        {
            DestinationAccountInfo = new TerryBankAccountInfo()
            {
                AccNr = destNr,
                OwnersName = destName
            };

            SourceAccountInfo = new TerryBankAccountInfo()
            {
                AccNr = srcNr,
                OwnersName = srcName
            };

            Amount = amount;
            DestinationBank = destBank;
            SourceBank = srcBank;
            Title = title;
            IsTransferSuccessful = isSuccessful == "y";
        }