IImporter.cs

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