Exemplo n.º 1
0
 public ClientOwnedPropertyDetailUI(string pClientId, string pId)
 {
     InitializeComponent();
     lClientId             = pClientId;
     lId                   = pId;
     lFromSave             = false;
     lOperation            = GlobalVariables.Operation.Edit;
     loClientOwnedProperty = new ClientOwnedProperty();
 }
Exemplo n.º 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;
 }
Exemplo n.º 4
0
 public string updateClientOwnedProperty([FromBody] ClientOwnedProperty pClientOwnedProperty)
 {
     return(loClientOwnedProperty.updateClientOwnedProperty(pClientOwnedProperty));
 }
Exemplo n.º 5
0
 public string insertClientOwnedProperty([FromBody] ClientOwnedProperty pClientOwnedProperty)
 {
     return(loClientOwnedProperty.insertClientOwnedProperty(pClientOwnedProperty));
 }