// Fields
 // Results
 // Business constructor
 public EnableToastNotification(
     DisableToastNotification disable
     )
 {
     InitializeResults();
     _disable = new PredecessorObj<DisableToastNotification>(this, RoleDisable, disable);
 }
            public CorrespondenceFact CreateFact(FactMemento memento)
            {
                DisableToastNotification newFact = new DisableToastNotification(memento);

                // Create a memory stream from the memento data.
                using (MemoryStream data = new MemoryStream(memento.Data))
                {
                    using (BinaryReader output = new BinaryReader(data))
                    {
                        newFact._unique = (Guid)_fieldSerializerByType[typeof(Guid)].ReadData(output);
                    }
                }

                return newFact;
            }