using DaSaSo.Domain.Model; using DaSaSo.Domain.Services; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DaSaSo.InMemoryProvider { public class InMemoryDataProvider : IDataService where T : DomainObject { public Task Create(T entity) { throw new NotImplementedException(); } public T CreateNonAsync(T entity) { throw new NotImplementedException(); } public Task Delete(int id) { throw new NotImplementedException(); } public Task Get(int id) { throw new NotImplementedException(); } public Task> GetAll() { throw new NotImplementedException(); } public Task Update(int id, T entity) { throw new NotImplementedException(); } } }