예제 #1
0
        // 서버에 연결하는 코드
        private void ConnectServer()
        {
            POPService service = new POPService();

            client = new POPClient()
            {
                performance_id = this.performance_id
            };
            if (client.Connect())
            {
                client.production_id         = production_id;
                client.performance_qtyimport = Convert.ToInt32(txtcount.Text);
                client.time = service.setTacttime(txtProductID.Text);
                client.Certification();
            }
        }