1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Startech.IDAL
- {
- /// <summary>
- /// 基础接口
- /// </summary>
- /// <typeparam name="T"></typeparam>
- public interface IDataProvider<T>
- {
- IEnumerable<T> FindAll();
- T FindOne(string id);
- void Delete(string id);
- }
- }
|