Add project files.
This commit is contained in:
10
Common.Library/Interfaces/IRepository.cs
Normal file
10
Common.Library/Interfaces/IRepository.cs
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user