11 lines
258 B
C#
11 lines
258 B
C#
|
|
using System.Linq.Expressions;
|
|||
|
|
|
|||
|
|
namespace HiVakil.Common.Models.Mapper
|
|||
|
|
{
|
|||
|
|
public interface IBaseDto<TDto,TEntity>
|
|||
|
|
{
|
|||
|
|
Guid Id { get; set; }
|
|||
|
|
bool Compare(object obj);
|
|||
|
|
static Expression<Func<TEntity, TDto>> ProjectToDto;
|
|||
|
|
}
|
|||
|
|
}
|