Update data access layer, begin acquiring raw data

This commit is contained in:
Aaron Po
2025-11-17 02:39:40 -05:00
parent b86607e37a
commit fc2e8c9b6d
15 changed files with 166221 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
namespace DataAccessLayer
{
public interface IRepository<T>
where T : class
{
void Add(T entity);
T? GetById(Guid id);
void Update(T entity);
void Delete(Guid id);
}
}