mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
16 lines
356 B
C#
16 lines
356 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Yi.Framework.Model.Models;
|
|||
|
|
using Yi.Framework.Repository;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Interface
|
|||
|
|
{
|
|||
|
|
public interface IBaseService<T> where T:BaseModelEntity,new()
|
|||
|
|
{
|
|||
|
|
public IRepository<T> _repository { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|