Template
21 lines
673 B
C#
21 lines
673 B
C#
using Riok.Mapperly.Abstractions;
|
|
using Strata.ContinuousImprovement.Biz.Dtos;
|
|
using Strata.ContinuousImprovement.Biz.Network;
|
|
|
|
namespace Strata.ContinuousImprovement.Api.Test.Unit.Generics
|
|
{
|
|
[Mapper(UseDeepCloning = true, EnumMappingStrategy = EnumMappingStrategy.ByName, EnumMappingIgnoreCase = true)]
|
|
public static partial class ClientNetworkOpportunityMapper
|
|
{
|
|
|
|
public static ClientNetworkOpportunityDto MapToDto(this ClientNetworkOpportunity src)
|
|
{
|
|
var mapped = src.Mapped();
|
|
return mapped;
|
|
}
|
|
|
|
private static partial ClientNetworkOpportunityDto Mapped(this ClientNetworkOpportunity src);
|
|
|
|
}
|
|
}
|