fix: namespace Team3

This commit is contained in:
Frank 2025-11-10 10:36:02 +01:00
parent 17f4c10602
commit 10fdfebcb3

View File

@ -2,8 +2,10 @@ using System;
using Microsoft.Data.Sqlite;
using Database.Dto;
class EditRecords
namespace Team3
{
class EditRecords
{
public static AuthorDto? EditAuthor(SqliteConnection connection, AuthorDto author)
{
using (var command = new SqliteCommand())
@ -279,5 +281,6 @@ class EditRecords
}
return null;
}
}
}
}