public void Detach(string blogger, OnlyNotification Update)
 {
     // Possible problem here
     Notify[blogger] -= Update;
 }
 public void Attach(string blogger, OnlyNotification Update)
 {
     Register(blogger);
     Notify[blogger] += Update;
 }