Template
14 lines
485 B
C#
14 lines
485 B
C#
using Riok.Mapperly.Abstractions;
|
|
using Strata.ContinuousImprovement.Biz.OpportunityComments;
|
|
using static Strata.ContinuousImprovement.Api.Controllers.CommentsController;
|
|
|
|
namespace Strata.ContinuousImprovement.Api.Test.Unit.Api.Generics
|
|
{
|
|
[Mapper(UseDeepCloning = true, EnumMappingStrategy = EnumMappingStrategy.ByName, EnumMappingIgnoreCase = true)]
|
|
public static partial class CommentMapper
|
|
{
|
|
public static partial Comment Map(this NewComment src);
|
|
}
|
|
|
|
}
|