Exemple #1
0
 public InfoContact(List <Info> infosList)
 {
     _infosList         = new List <Info>();
     _contactDictionary = new Dictionary <string, Info>();
     _filter            = new List <string> {
         "company_name",             //=> nom_societe
         "address",                  //=> adresse
         "phone",                    //=> tel
         "fax",                      //=> fax
         "email",                    //=> email
         "tax_code",                 //=> num_tva
     };
     _contactDictionary = InfoGeneral.getInfoDictionary(infosList, _filter);
 }
Exemple #2
0
 public InfoBank(List <Info> infosList)
 {
     _infosList      = new List <Info>();
     _bankfilterList = new List <string> {
         "sort_code",                    //=> code_banque
         "account_number",               //=> num_compte
         "acount_key_number",            //=> cle_rib
         "bank_name",                    //=> nom_banque
         "branch_code",                  //=> guichet
         "iban",                         //=> IBAN
         "bic",                          //=> BIC
         "bank_address",                 //=> adresse_banque
     };
     _bankDictionary = InfoGeneral.getInfoDictionary(infosList, _bankfilterList);
 }