added first domain model

This commit is contained in:
2022-04-12 19:56:54 +02:00
parent a64e973269
commit 2319347f03
33 changed files with 3566 additions and 302 deletions

View File

@ -0,0 +1,7 @@
import { CamelCaseNamingConvention, createMapper } from "@automapper/core";
import { classes } from "@automapper/classes";
export const mapper = createMapper({
strategyInitializer: classes(),
namingConventions: new CamelCaseNamingConvention()
});