WIP dependency Injection
This commit is contained in:
38
DaSaSo.InMemoryProvider/InMemoryDataProvider.cs
Normal file
38
DaSaSo.InMemoryProvider/InMemoryDataProvider.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using DaSaSo.Domain.Model;
|
||||
using DaSaSo.Domain.Service;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DaSaSo.InMemoryProvider
|
||||
{
|
||||
public class InMemoryDataProvider<T> : IDataService<T> where T : DomainObject
|
||||
{
|
||||
public Task<T> Create(T entity)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<bool> Delete(int id)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<T> Get(int id)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<IEnumerable<T>> GetAll()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<T> Update(int id, T entity)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user