UI fejlesztése

This commit is contained in:
2025-03-24 16:47:28 +01:00
parent 29d94c9256
commit 8f38408646
13 changed files with 394 additions and 45 deletions
@@ -27,6 +27,9 @@ namespace WorkFlowCheck.MAUI.Mapper
.ForMember(dest => dest.CheckListRowDTO, opt => opt.MapFrom(src => src.CheckListRows));
CreateMap<CheckListHeaderDTO, CheckListHeader>()
.ForMember(dest => dest.CheckListRows, opt => opt.MapFrom(src => src.CheckListRowDTO));
CreateMap<CheckListRow, CheckListRowDTO>()
.ForMember(dest => dest.CheckListTemplateRowDTO, opt => opt.MapFrom(src => src.CheckListTemplateRow));
CreateMap<CheckListRowDTO, CheckListRow>();
}
}
}