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