예제 #1
0
 public ChangeNameWindow(CustomerModel SelectedRow, CustomerListWindow customerListWindow, int SalesManId)
 {
     _Id = SalesManId;
     this.CustomerListWindow = customerListWindow;
     this.SelectedCustomer   = SelectedRow;
     InitializeComponent();
     txtExistingName.Text = SelectedRow.Name;
 }
예제 #2
0
        public ChangeResponsibleWindow(CustomerModel SelectedRow, CustomerListWindow customerListWindow, int SalesManId)

        {
            _Id = SalesManId;
            this.CustomerListWindow = customerListWindow;
            this.SelectedCustomer   = SelectedRow;
            InitializeComponent();
        }
예제 #3
0
        public ChangeCityAndPostcodeWindow(CustomerModel SelectedRow, CustomerListWindow customerListWindow, int SalesManId)

        {
            _Id = SalesManId;
            this.CustomerListWindow = customerListWindow;
            this.SelectedCustomer   = SelectedRow;
            InitializeComponent();
            txtExistingCity.Text     = SelectedRow.City;
            txtExistingPostcode.Text = SelectedRow.Postcode;
        }