BUGFIXEK UI oldalon

This commit is contained in:
2025-03-31 22:13:28 +02:00
parent 61dd5bc9a1
commit ea305ebbf4
6 changed files with 22 additions and 17 deletions
@@ -29,7 +29,8 @@ namespace WorkFlowCheck.MAUI.Mapper
.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>();
CreateMap<CheckListRowDTO, CheckListRow>()
.ForMember(dest => dest.CheckListTemplateRow, opt => opt.MapFrom(src => src.CheckListTemplateRowDTO));
}
}
}