예제 #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();
 }
예제 #2
0
 public JobBUS(MainBUS main)
 {
     this.main   = main;
     this.JobDAO = new JobDAO(this.main.GetCommand());
 }
예제 #3
0
 public BurialLocationBUS(MainBUS main)
 {
     this.main         = main;
     burialLocationDAO = new BurialLocationDAO(this.main.GetCommand());
 }
예제 #4
0
 public HometownBUS(MainBUS main)
 {
     this.main   = main;
     hometownDAO = new HometownDAO(this.main.GetCommand());
 }
예제 #5
0
 public ArchieveBUS(MainBUS main)
 {
     this.mainBus = main;
     this.archieveDetailDAO = new ArchieveDetailDAO(main.GetCommand());
     this.archieveTypeDAO = new ArchieveTypeDAO(main.GetCommand());
 }
예제 #6
0
 public DeathReasonBUS(MainBUS main)
 {
     this.main           = main;
     this.deathMemberDAO = new DeathMemberDAO(main.GetCommand());
     this.deathReasonDAO = new DeathReasonDAO(this.main.GetCommand());
 }
예제 #7
0
 public RelationshipBUS(MainBUS main)
 {
     this.main            = main;
     this.relationshipDAO = new RelationshipDAO(this.main.GetCommand());
 }