21 lines
372 B
C#
21 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using CsvHelper.Configuration;
|
|
using InventoryTraker.Web.Models;
|
|
|
|
namespace InventoryTraker.Web.Utilities
|
|
{
|
|
public class MovementReportWriter
|
|
{
|
|
public sealed class InventoryTypeReportMap : CsvClassMap<MovementReportItem>
|
|
{
|
|
public InventoryTypeReportMap()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
} |