コード例 #1
0
 public RefreshStockInfoForm(CompanyMatrixInfoType infoType)
 {
     InitializeComponent();
     _infoType = infoType;
     BindStockRefreshInfoTypes();
 }
コード例 #2
0
ファイル: BizCompanyMatrix.cs プロジェクト: wbqsln/HitStock
 public IList<MarketStock> GetEmptyStockMatrix(CompanyMatrixInfoType companyMatrixType)
 {
     var propertyName = BizCompanyMatrix.RefreshType_TableColumn_Name_Dict[companyMatrixType];
     var stocks = _cmRepository.GetStockWithEmptyStockMatrix(propertyName);
     return stocks;
 }