16 lines
246 B
C#
16 lines
246 B
C#
|
using LDBproject.Entities;
|
|||
|
|
|||
|
namespace LDBproject.Repositories;
|
|||
|
|
|||
|
public interface IUpdateRep
|
|||
|
{
|
|||
|
IEnumerable<UpdateC> GetUpdateList();
|
|||
|
|
|||
|
UpdateC GetUpdateByID(int id);
|
|||
|
|
|||
|
void AddUpdate(UpdateC card);
|
|||
|
|
|||
|
void RemoveUpd(int cardID);
|
|||
|
}
|
|||
|
|