using adas_core.Domain.Models.MongoModels; using adas_core.Infrastructure.Utils.MongoMaps.Interfaz; using MongoDB.Bson.Serialization; namespace adas_core.Infrastructure.Utils.MongoMaps; /// /// Represents a map contributor responsible for contributing mapping logic for notice control entities. /// /// /// Implements the interface to participate in the entity mapping process. /// public class NoticeControlMapContributor : IEntityMapContributor { /// /// Registers BSON class maps for the , , and types if they have not already been registered, configuring element names, automatic mapping, and null-ignore behavior where applicable. /// public void RegisterMaps() { if (!BsonClassMap.IsClassMapRegistered(typeof(Notice))) BsonClassMap.RegisterClassMap(cm => { cm.AutoMap(); cm.MapIdMember(c => c.Id).SetElementName("_id"); }); if (!BsonClassMap.IsClassMapRegistered(typeof(StaffInfo))) BsonClassMap.RegisterClassMap(cm => { cm.AutoMap(); }); if (!BsonClassMap.IsClassMapRegistered(typeof(MedicalStaffConfig))) BsonClassMap.RegisterClassMap(cm => { cm.MapMember(c => c.HasTeams).SetIgnoreIfNull(true); cm.MapMember(c => c.StaffAmount).SetIgnoreIfNull(true); }); } }