Example #1
0
        // Это надо для нормальной сериализации синглтона

        public object GetRealObject(StreamingContext context)
        {
            AccidentsCollector realObject = GetInstance();

            realObject.Merge(this);
            return(realObject);
        }
Example #2
0
 private void Merge(AccidentsCollector otherInstance)
 {
     this.accidents = otherInstance.accidents;
 }