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