Esempio n. 1
0
 /// <summary>
 /// the instantiation of the VAT Rates will also retrieve the list from the database
 /// </summary>
 public VATRateController()
 {
     using Database.EntityFramework.DatabaseLink.GlossaryFunctions glossaryFunctions = new Database.EntityFramework.DatabaseLink.GlossaryFunctions();
     glossaryFunctions.GetVatRates();
 }
Esempio n. 2
0
 /// <summary>
 /// the initialization of the countries will also retrieve the list from the database
 /// </summary>
 public CountriesController()
 {
     using Database.EntityFramework.DatabaseLink.GlossaryFunctions glossaryFunctions = new Database.EntityFramework.DatabaseLink.GlossaryFunctions();
     countries = glossaryFunctions.GetCountries();
 }