School Commit Init
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
using ProfessionalProfile.Domain;
|
||||
|
||||
namespace ProfessionalProfile.Interfaces
|
||||
{
|
||||
public interface IProjectRepo
|
||||
{
|
||||
public Project GetById(int id);
|
||||
public ICollection<Project> GetAll();
|
||||
public void Add(Project item);
|
||||
public void Update(Project item);
|
||||
public void Delete(int id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user