Add version processor window
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates deep clone of object
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
public interface ICloneStrategy<T>
|
||||
{
|
||||
/// <summary>
|
||||
/// Returns deep clone of object
|
||||
/// </summary>
|
||||
/// <param name="sourceObject"></param>
|
||||
/// <returns></returns>
|
||||
T GetClone(T sourceObject);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user