Пример #1
0
 public Delays(ServicesReferences.Service1Client serv, int FlightID, string usr, string pass)
 {
     Service = serv;
     InitializeComponent();
     flightID = FlightID;
     Delays_Grid.ItemsSource      = Service.GetGridDelay_Cause(FlightID).Tables[0].DefaultView;
     Delays_TypeCombo.ItemsSource = Service.GetComboDelay_Type().Tables[0].DefaultView;
     username = usr;
     password = pass;
 }
Пример #2
0
 private void button43_Click(object sender, RoutedEventArgs e)
 {
     Service.InsertDelay_Cause((short)Delays_TypeCombo.SelectedValue, flightID,
                               new TextRange(Delays_Description.Document.ContentStart, Delays_Description.Document.ContentEnd).Text, username, password);
     Delays_Grid.ItemsSource = Service.GetGridDelay_Cause(flightID).Tables[0].DefaultView;
 }