Exemplo n.º 1
0
        public frmBorrowBook(Model.Borrower oData, ePublicVariable.eVariable.FIND_BOOK oType)
        {
            InitializeComponent();

            GetDataRecordFunctionPointer  += new GetDataRecordFunction(GetRecord);
            iGridControl.GetDataRecordList = GetDataRecordFunctionPointer;


            eVariable.DisablePanelTextKeyPress(pnlMain);

            oTranType             = oType;
            oMBorrower            = oData;
            eVariable.sBorrowerID = oMBorrower.PERSON_ID;
            AutoFillBorrower();
        }
Exemplo n.º 2
0
 public frmDisplayBorrowedBook(Model.Borrower oData, eVariable.FIND_BOOK oType)
 {
     InitializeComponent();
     oMBorrower = oData;
     TranType   = oType;
 }