Files

19 lines
422 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.Contracts
{
public interface IDataService<T>: IDisposable
{
Task<IEnumerable<T>> GetAll();
Task<T> Get(int id);
Task<T> Create(T entity);
Task<T> Update(T entity);
Task<bool> Delete(int id);
//T CreateNonAsync(T entity);
}
}