using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
///
/// Implements logic for convert from one object to another one
///
/// Type of target object
/// Type of source object
public interface IObjectConvertStrategy
{
///
/// Converts sourve object to another one
///
/// Source object
/// Target object
T Convert(V source);
}
}