* Maintain DataModel for User, Role, Function and UserRole

This commit is contained in:
2025-02-20 05:20:30 +01:00
parent c2078d1614
commit cd5990039d
21 changed files with 740 additions and 1 deletions

View File

@@ -11,5 +11,9 @@ public class MappingProfile : Profile
{
CreateMap<TaskScheduler, TaskSchedulerDto>().ReverseMap();
CreateMap<TaskSchedulerDetail, TaskSchedulerDetailDto>().ReverseMap();
CreateMap<User, UserDto>().ReverseMap();
CreateMap<Role, RoleDto>().ReverseMap();
CreateMap<Function, FunctionDto>().ReverseMap();
CreateMap<UserRole, UserRoleDto>().ReverseMap();
}
}