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