예제 #1
0
 public frmSending2(SendingClass sendingInfo, string myaccountsending)
 {
     InitializeComponent();
     SSerialNum       = sendingInfo.SSerialNum;
     NAccountNum      = sendingInfo.NAccountNum;
     AmountOfSending  = sendingInfo.AmountOfSending;
     SendingDate      = sendingInfo.SendingDate;    //현재 넘어온 값은 빈 값. 디비에서 인서트할 때 그 때 현재 시간을 디비에 넣어줄거임
     RecentlySentTo   = sendingInfo.RecentlySentTo; //입금계좌이다
     CustomerNum      = sendingInfo.CustomerNum;
     CustomerName     = sendingInfo.CustomerName;
     ReceiversName    = sendingInfo.ReceiversName;
     MyAccountSending = myaccountsending;
 }
예제 #2
0
 public frmSending2(SendingClass sendingInfo) : this(sendingInfo, "")
 {
 }