правки

This commit is contained in:
2025-02-26 17:19:15 +04:00
parent 56af2f0e0a
commit 18df50575b
2 changed files with 0 additions and 5 deletions

View File

@@ -16,5 +16,4 @@ public interface ITourStorageContract
void AddElement(TourDataModel tourDataModel);
void UpdElement(TourDataModel tourDataModel);
void DelElement(string id);
void ResElement(string id);
}

View File

@@ -164,10 +164,6 @@ internal class TourStorageContract : ITourStorageContract
throw new StorageException(ex);
}
}
public void ResElement(string id)
{
throw new NotImplementedException();
}
private Tour? GetTourById(string id) => _dbContext.Tours.FirstOrDefault(x => x.Id == id);
}