public T FindByGuid([CanBeNull] StrGuid?guid) { if (guid == null) { return(null); } return(It.FirstOrDefault(x => x.Guid == guid)); }