using System; using System.Collections.Generic; using System.Text; using Tango.DAL; namespace Tango.BLL { public interface IMapper where T1 : class where T2 : class { void Map(T1 source, T2 target); void Map(T2 source, T1 target); T2 Create(T1 source); T1 Create(T2 source); } }