コード例 #1
0
 public void ClearIwps()
 {
     _fiwps.Clear();
     _selectedIwp = null;
 }
コード例 #2
0
        public RevealCommonSvc.ComboBoxDTO FindCrewByPersonnelID(int personnelID)
        {
            RevealCommonSvc.ComboBoxDTO retValue = new RevealCommonSvc.ComboBoxDTO();

            try
            {
                var crew = _crews.Where(x => Convert.ToInt32(x.ExtraValue2) == personnelID).SingleOrDefault();
                if (crew != null)
                    retValue = crew;
            }
            catch { }

            return retValue;
        }
コード例 #3
0
 public void SelectIWP(object select)
 {
     try
     {
         _selectedIwp = null;
         if (select != null)
             _selectedIwp = select as RevealCommonSvc.ComboBoxDTO;
         
     }
     catch { }
 }