IWriter.cs

13 lines | 212 B Blame History Raw Download
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);
    }
}