Ejemplo n.º 1
0
 /// <summary>
 /// 생성자로써 생성되면 클래스에서 사용되는 객체들을 생성 및 초기화해준다.
 /// </summary>
 /// <param name="list">회원 정보 리스트</param>
 public ControlMember()
 {
     addMember         = new AddMember();
     memberDAO         = new MemberDAO();
     drawControlMember = new DrawControlMember();
     exceptionHandling = new ExceptionHandling();
     databaseException = new DatabaseException();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 기본 생성자로써 각각의 객체들의 생성해주고 초기화해준다.
 /// 초기화 후에 회원가입을 진행한다.
 /// </summary>
 /// <param name="list">회원의 정보를 매개변수로 받는다.</param>
 public AddMember()
 {
     drawControlMember = new DrawControlMember();
     exceptionHandling = new ExceptionHandling();
     databaseException = new DatabaseException();
     memberDAO         = new MemberDAO();
     count             = 0;
 }
Ejemplo n.º 3
0
        private string phoneNumber;                   //전화번호를 입력 받기 위함

        /// <summary>
        /// 각 객체 초기화 후에 회원가입 메소드 호출
        /// </summary>
        /// <param name="list"></param>
        public SignUp()
        {
            memberDAO         = new MemberDAO();
            databaseException = new DatabaseException();
            drawControlMember = new DrawControlMember();
            exceptionHandling = new ExceptionHandling();
            securePassword    = new SecureString();
            secureResidentNum = new SecureString();
        }