Exemplo n.º 1
0
 public MemberBUS(MainBUS main)
 {
     this.mainBus   = main;
     this.memberDAO = new MemberDAO(this.mainBus.GetCommand());
     this.jobDAO    = new JobDAO(this.mainBus.GetCommand());
     this.data      = this.memberDAO.getAllMember();
 }
Exemplo n.º 2
0
 public JobBUS(MainBUS main)
 {
     this.main   = main;
     this.JobDAO = new JobDAO(this.main.GetCommand());
 }
Exemplo n.º 3
0
 public BurialLocationBUS(MainBUS main)
 {
     this.main         = main;
     burialLocationDAO = new BurialLocationDAO(this.main.GetCommand());
 }
Exemplo n.º 4
0
 public HometownBUS(MainBUS main)
 {
     this.main   = main;
     hometownDAO = new HometownDAO(this.main.GetCommand());
 }
Exemplo n.º 5
0
 public ArchieveBUS(MainBUS main)
 {
     this.mainBus = main;
     this.archieveDetailDAO = new ArchieveDetailDAO(main.GetCommand());
     this.archieveTypeDAO = new ArchieveTypeDAO(main.GetCommand());
 }
Exemplo n.º 6
0
 public DeathReasonBUS(MainBUS main)
 {
     this.main           = main;
     this.deathMemberDAO = new DeathMemberDAO(main.GetCommand());
     this.deathReasonDAO = new DeathReasonDAO(this.main.GetCommand());
 }
Exemplo n.º 7
0
 public RelationshipBUS(MainBUS main)
 {
     this.main            = main;
     this.relationshipDAO = new RelationshipDAO(this.main.GetCommand());
 }