Only show jobs if they arent deleted

This commit is contained in:
2025-08-05 19:09:32 -07:00
parent 1503ed8c5c
commit cf5dc462f5
@@ -73,7 +73,8 @@ namespace BoredCareers.Services.DatabaseService {
string command = @"
SELECT *
FROM JobListing
WHERE CompanyID = @CompanyID;
WHERE IsDeleted = FALSE
AND CompanyID = @CompanyID;
";
MySqlCommand cmd = new MySqlCommand(command, connection);