Ejemplo n.º 1
0
 public void ExportExcelProductData(MappingModel model)
 {
     DataTable fullDt = GetBetTypesOfProductsData();
     AddBaseTypeToDataTable(ref fullDt);
     DataTable productDt = GetProductData(model.ProductId, fullDt);
     ExportToExcel(productDt);
 }
Ejemplo n.º 2
0
 public void ExportExcelMappingData(MappingModel model)
 {
     DataTable fullDt = GetBetTypesOfProductsData();
     AddBaseTypeToDataTable(ref fullDt);
     DataTable deviredDt = GetDeviredTypesOfBetTypeWithProductId(model.ProductId, fullDt, model.BaseType);
     ExportToExcel(deviredDt);
 }
Ejemplo n.º 3
0
 public ActionResult Index()
 {
     MappingModel model = new MappingModel();
     return View(model);
 }