Пример #1
0
 public ClientPersonalReferenceDetailUI(string pClientId, string pId)
 {
     InitializeComponent();
     lClientId  = pClientId;
     lId        = pId;
     lFromSave  = false;
     lOperation = GlobalVariables.Operation.Edit;
     loClientPersonalReference = new ClientPersonalReference();
 }
Пример #2
0
 public ClientDetailUI()
 {
     InitializeComponent();
     lId                       = "";
     lOperation                = GlobalVariables.Operation.Add;
     loLookupValue             = new LookUpValueUI();
     loClient                  = new Client();
     loClientFamilyMember      = new ClientFamilyMember();
     loClientPersonalReference = new ClientPersonalReference();
     loClientSourceOfIncome    = new ClientSourceOfIncome();
     loClientOwnedProperty     = new ClientOwnedProperty();
     loClientCreditExperience  = new ClientCreditExperience();
 }
 public ClientDetailUI(string[] pRecords)
 {
     InitializeComponent();
     lId                       = "";
     lOperation                = GlobalVariables.Operation.Edit;
     loLookupValue             = new LookUpValueUI();
     loClient                  = new Client();
     loClientFamilyMember      = new ClientFamilyMember();
     loClientPersonalReference = new ClientPersonalReference();
     loClientSourceOfIncome    = new ClientSourceOfIncome();
     loClientOwnedProperty     = new ClientOwnedProperty();
     loClientCreditExperience  = new ClientCreditExperience();
     loLoanApplication         = new LoanApplication();
     lRecords                  = pRecords;
 }
Пример #4
0
 public string updateClientPersonalReference([FromBody] ClientPersonalReference pClientPersonalReference)
 {
     return(loClientPersonalReference.updateClientPersonalReference(pClientPersonalReference));
 }
Пример #5
0
 public string insertClientPersonalReference([FromBody] ClientPersonalReference pClientPersonalReference)
 {
     return(loClientPersonalReference.insertClientPersonalReference(pClientPersonalReference));
 }