예제 #1
0
        protected void EditBy(Customer customer)
        {
            EditorFormTitle = "EDIT";
            Customer        = customer;

            CustomerEditorForm.Show();
        }
예제 #2
0
        protected void btnCreate_Click()
        {
            EditorFormTitle = "ADD";
            Customer        = new Customer();

            CustomerEditorForm.Show();
        }