Exemplo n.º 1
0
        private void _ADD_EMPLOY_OnClick(object sender, RoutedEventArgs e)
        {
            var wind = new AddEmploy(_staffGuid, Guid.Empty)
            {
                Owner = Window.GetWindow(this)
            };

            wind.ShowDialog();
            Refresh(_staffGuid, _fromDate, _toDate);
        }
Exemplo n.º 2
0
        private void _EMPLOY_LIST_OnMouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            if (_isReadOnly)
            {
                return;
            }

            var wind = new AddEmploy(_staffGuid, SelectedEmployGuid)
            {
                Owner = Window.GetWindow(this)
            };

            wind.ShowDialog();
            Refresh(_staffGuid, _fromDate, _toDate);
        }
Exemplo n.º 3
0
 private void _ADD_EMPLOY_OnClick(object sender, RoutedEventArgs e)
 {
     var wind = new AddEmploy(_staffGuid, Guid.Empty) { Owner = Window.GetWindow(this) };
     wind.ShowDialog();
     Refresh(_staffGuid, _fromDate, _toDate);
 }
Exemplo n.º 4
0
 private void _EMPLOY_LIST_OnMouseDoubleClick(object sender, MouseButtonEventArgs e)
 {
     if (_isReadOnly) return;
  
     var wind = new AddEmploy(_staffGuid, SelectedEmployGuid) { Owner = Window.GetWindow(this) };
     wind.ShowDialog();
     Refresh(_staffGuid, _fromDate, _toDate);
 }