public RefreshStockInfoForm(CompanyMatrixInfoType infoType)
 {
     InitializeComponent();
     _infoType = infoType;
     BindStockRefreshInfoTypes();
 }
Beispiel #2
0
 public IList<MarketStock> GetEmptyStockMatrix(CompanyMatrixInfoType companyMatrixType)
 {
     var propertyName = BizCompanyMatrix.RefreshType_TableColumn_Name_Dict[companyMatrixType];
     var stocks = _cmRepository.GetStockWithEmptyStockMatrix(propertyName);
     return stocks;
 }