Home / ToolPack1 / RW_Tool / Interface / IImporter.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RW_Tool.Interface { public interface IImporter<T1,T2> { void Import(T1 entity, T2 param); } }