Exemplo n.º 1
0
 public PaymentMethodsUpdater(string pathToLogins)
 {
     FileDao        = new FileDao();
     DatabaseDao    = new DatabaseDao();
     Logins         = FileDao.GetLogins(pathToLogins);
     Products       = FileDao.GetProducts();
     NewTariffTable = FileDao.GetNewValue();
 }
Exemplo n.º 2
0
 public void InitializeData(string path)
 {
     Logins         = FileDao.GetLogins(path);
     Products       = FileDao.GetProducts();
     NewTariffTable = FileDao.GetNewValue();
 }