Add project files.

This commit is contained in:
Mark Kors
2025-11-11 10:34:36 +01:00
parent 4a5fddd3df
commit aa6427edde
9 changed files with 277 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SQLite_test.Classes
{
internal class User : Crud
{
// call inherited methods from Crud class
public void AddUser()
{
Add();
}
public void CreateUser()
{
Create();
}
public void ReadUser()
{
Read();
}
public void DeleteUser()
{
Delete();
}
}
}