You've already forked CsharpTemplate
Add project files.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using APITemplate.Models;
|
||||
|
||||
namespace APITemplate.Repositories
|
||||
{
|
||||
public class ExampleRepository : IExampleRepository
|
||||
{
|
||||
public void Insert(Example e)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using APITemplate.Models;
|
||||
|
||||
namespace APITemplate.Repositories
|
||||
{
|
||||
public interface IExampleRepository
|
||||
{
|
||||
void Insert(Example e);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user