Exemplo n.º 1
0
 public Boolean store_user(User u) {
   return hbConf.store_user(u);
 }
Exemplo n.º 2
0
 public void store_extras(List<Extra> list) {
   hbConf.store_extras(list);
 }
Exemplo n.º 3
0
 public List<User> get_users() {
   return hbConf.get_users();
 }
Exemplo n.º 4
0
 public List<Extra> get_extras() {
   return hbConf.get_extras();
 }
Exemplo n.º 5
0
 public void store_reductions(List<Reduction> list) {
   hbConf.store_reductions(list);
 }
Exemplo n.º 6
0
 public List<Reduction> get_reductions() {
   return hbConf.get_reductions();
 }
Exemplo n.º 7
0
 public void store_pricelist(List<Price> list) {
   hbConf.store_pricelist(list);
 }
Exemplo n.º 8
0
 public List<Price> get_pricelist() {
   return hbConf.get_pricelist();
 }