Esempio n. 1
0
        protected void FetchingInfo(object sender, EventArgs e)
        {
            var controller = new OrderListController();
            var detail     = controller.CustomerDetails(int.Parse(OrderDropDown.SelectedValue));

            CustomerID.Value       = detail.CustomerID.ToString();
            CustomerNameLabel.Text = "Customer:" + detail.FullName;
            CustomerContact.Text   = "Phone:" + detail.Contact;
        }