public void Insert(long PaymentObjectKey,int? ReceivingCurrency,int? ReceivingCountry)
        {
            AdminBankAccount item = new AdminBankAccount();

            item.PaymentObjectKey = PaymentObjectKey;

            item.ReceivingCurrency = ReceivingCurrency;

            item.ReceivingCountry = ReceivingCountry;

            item.Save(UserName);
        }
        public void Update(int AdminBankAccountKey,long PaymentObjectKey,int? ReceivingCurrency,int? ReceivingCountry)
        {
            AdminBankAccount item = new AdminBankAccount();
            item.MarkOld();
            item.IsLoaded = true;

            item.AdminBankAccountKey = AdminBankAccountKey;

            item.PaymentObjectKey = PaymentObjectKey;

            item.ReceivingCurrency = ReceivingCurrency;

            item.ReceivingCountry = ReceivingCountry;

            item.Save(UserName);
        }