using System.Collections.Generic; namespace Taloyhtio.GeneralApi.Core.Services { public interface IMapper { U Map(T source); IEnumerable Map(IEnumerable source); T Map(U source); IEnumerable Map(IEnumerable source); } }