excellupload 1.0.0

dotnet add package excellupload --version 1.0.0
NuGet\Install-Package excellupload -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="excellupload" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add excellupload --version 1.0.0
#r "nuget: excellupload, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install excellupload as a Cake Addin
#addin nuget:?package=excellupload&version=1.0.0

// Install excellupload as a Cake Tool
#tool nuget:?package=excellupload&version=1.0.0

Convert Excel file to filled List<T>

using ExcelUpload;
using ExcelUpload.Abstract;

[HttpPost]
public ActionResult Upload(HttpPostedFileBase file) {

List<IPTable> PTableList = new List<IPTable>();
PTableList.Add(new PTable<Sedan>());
PTableList.Add(new PTable<Order>());
ExcellReader er = new ExcellReader();
er.ReadExcelContent(file, PTableList);
List<Sedan> Sedans = (List<Sedan>)PTableList[0].GetDataList;
List<Order> Orders = (List<Order>)PTableList[1].GetDataList;
...

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 17,699 5/7/2016