コード例 #1
0
 public void Show(UCFregments fregment, Dao.SuperDao dao)
 {
     ISuperBusiness next = _businesses.Find(b => b.Code == fregment);
     if (next == null) return;
     next.SetParent(_currentBusiness);
     _currentBusiness = next;
     _currentBusiness.Show();
     _currentBusiness.Load(dao);
 }
コード例 #2
0
 public ISuperBusiness GetBusi(UCFregments fregment)
 {
     return _businesses.Find(b => b.Code == fregment);
 }