14 lines
352 B
C#
14 lines
352 B
C#
using ProfessionalProfile.Domain;
|
|
|
|
namespace ProfessionalProfile.Interfaces
|
|
{
|
|
public interface IEndorsementRepo
|
|
{
|
|
public Endorsement GetById(int id);
|
|
public ICollection<Endorsement> GetAll();
|
|
public void Add(Endorsement item);
|
|
public void Update(Endorsement item);
|
|
public void Delete(int id);
|
|
}
|
|
}
|