Example #1
0
 public ItemService(IItemDao dao, ISystemDao systemDao, ITypeDao typeDao)
 {
     this.dao       = dao;
     this.systemDao = systemDao;
     this.typeDao   = typeDao;
 }
 private void init()
 {
     dao = new TypeDao();
     getAllTypes();
 }
Example #3
0
 public TypeService(ITypeDao dao)
 {
     this.dao = dao;
 }
Example #4
0
 public TypeService(ITypeDao typeDao)
 {
     _typeDao = typeDao;
 }