Add project files.

This commit is contained in:
2025-08-28 11:32:25 +02:00
parent 35e29e07f1
commit eb9ea77dd9
54 changed files with 1872 additions and 0 deletions

View File

@ -0,0 +1,10 @@
using System.Collections.ObjectModel;
namespace Common.Library;
public interface IRepository<TEntity>
{
ObservableCollection<TEntity> Get();
TEntity Get(int id);
bool Save(TEntity entity);
}