Beispiel #1
0
        public void AcceptRollover(int customerID, long loanID)
        {
            var stra = new AcceptRollover(customerID, loanID);

            stra.Context.CustomerID = customerID;
            stra.Context.UserID     = customerID;
            stra.Execute();
        }
Beispiel #2
0
        }         // SaveRollover

        public StringActionResult AcceptRollover(int customerID, long loanID)
        {
            AcceptRollover s = new AcceptRollover(customerID, loanID);

            s.Context.UserID     = customerID;
            s.Context.CustomerID = customerID;
            s.Execute();
            return(new StringActionResult {
                Value = s.Error
            });
        }         // AcceptRollover
Beispiel #3
0
		public void AcceptRolloverTest() {
			const long loanID = 9;
			const int customerID = 387;
			AcceptRollover s = new AcceptRollover(customerID, loanID);
			s.Execute();
		}