11 lines
179 B
C#
11 lines
179 B
C#
using System.Collections.ObjectModel;
|
|
|
|
|
|
namespace Common.Library;
|
|
|
|
public interface IRepository<TEntity>
|
|
{
|
|
ObservableCollection<TEntity> Get();
|
|
TEntity? Get(int id);
|
|
}
|