public StatisticsDetails
 (
     bool didRegisterOnline,
     bool isAccreditationPrinted,
     int hourOfRegistration,
     AgeGroups ageGroup,
     WorkStatuses workStatus
 )
 {
     DidRegisterOnline      = didRegisterOnline;
     IsAccreditationPrinted = isAccreditationPrinted;
     HourOfRegistration     = hourOfRegistration;
     AgeGroup   = ageGroup;
     WorkStatus = workStatus;
 }
 public Create
 (
     string firstName,
     string lastName,
     string email,
     DateTime birthdate,
     WorkStatuses workStatus,
     DateTime createdOn
 )
 {
     FirstName  = firstName;
     LastName   = lastName;
     Email      = email;
     Birthdate  = birthdate;
     WorkStatus = workStatus;
     CreatedOn  = createdOn;
 }
 public LongDetails
 (
     Guid id,
     string firstName,
     string lastName,
     string email,
     DateTime birthdate,
     WorkStatuses workStatus,
     bool isAccreditationPrinted,
     DateTime createdOn
 )
 {
     Id                     = id;
     FirstName              = firstName;
     LastName               = lastName;
     FullName               = $"{FirstName} {LastName}";
     Email                  = email;
     Birthdate              = birthdate;
     WorkStatus             = workStatus;
     IsAccreditationPrinted = isAccreditationPrinted;
     CreatedOn              = createdOn;
 }