Exemplo n.º 1
0
        public SpringService RemoveService(int ropeId)
        {
            SpringService rope = GetRopeWithId(ropeId);

            if (rope != null)
            {
                rope.SetMassesNewState(true);
                ListOfServices.Remove(rope);
            }
            return(rope);
        }
Exemplo n.º 2
0
 public void RemoveService(SpringService SpringService)
 {
     SpringService.SetMassesNewState(true);
     this.ListOfServices.Remove(SpringService);
 }
Exemplo n.º 3
0
 public void AddNewService(SpringService SpringServiceIn)
 {
     ListOfServices.Add(SpringServiceIn);
 }