public TechnicalContact Create(TechnicalContact techCont)
 {
     _validator.ValidateAndThrow(techCont, ruleSet: nameof(ITechnicalContactLogic.Create));
     return(_datastore.Create(techCont));
 }