Template
chore: deploy initial code base
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user