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