Example #1
0
 void Scheduler_DBobjects_Intefraces.IColumn.AddEntity(Scheduler_DBobjects_Intefraces.IEntity entity)
 {
     if (entities.Any(e => e.IsIntersectWith(entity)))
     {
         throw new Exception("Добавленная сущность пересекается с уже существующей.");
     }
     entities.Add(entity);
 }
Example #2
0
 void Scheduler_DBobjects_Intefraces.IColumn.AddEntity(Scheduler_DBobjects_Intefraces.IEntity entity)
 {
     throw new NotImplementedException();
 }
Example #3
0
 void Scheduler_DBobjects_Intefraces.IMainDataBase.UpdateReception(Scheduler_DBobjects_Intefraces.IEntity reception)
 {
     dbconnector.UpdateReception(reception);
 }