using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
///
/// Logic for update object of type
///
/// Type of object
public interface IUpdateStrategy
{
///
/// Update properties of target object from source object
///
/// Target object
/// Source object
void Update(T targetObject, T sourceObject);
}
}