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