forked from ddrilling/AsbCloudServer
4db67113b4
CrudCacheService Адаптировано для новой схемы кеширования. Убраны extention методы для mapster.
17 lines
355 B
C#
17 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Mapster
|
|
{
|
|
public static class MapsterExtension
|
|
{
|
|
//public static IEnumerable<TDestination> Adapt<TDestination>(this IEnumerable<object> sourceList)
|
|
//{
|
|
// return sourceList.Select(item => item.Adapt<TDestination>());
|
|
//}
|
|
|
|
|
|
}
|
|
}
|