feat: namespace team4 added

This commit is contained in:
SkajpCZ 2025-11-10 10:43:10 +01:00
parent 22aec4322a
commit 7bab856643

View File

@ -2,8 +2,11 @@ using System;
using Microsoft.Data.Sqlite; using Microsoft.Data.Sqlite;
using Database.Dto; using Database.Dto;
public class Team4
namespace Team4
{ {
public class Team4
{
public static List<BookDto> GetBooksByName(SqliteConnection conn, string name) public static List<BookDto> GetBooksByName(SqliteConnection conn, string name)
{ {
try try
@ -257,4 +260,5 @@ public class Team4
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
}
} }