public void Detach(IRestorant restorant)

    {
        _restorants.Remove(restorant);
    }
 public void Attach(IRestorant restorant)
 {
     _restorants.Add(restorant);
 }