15 lines
321 B
C#
15 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Repository;
|
|
|
|
namespace Yi.Framework.Interface.Base
|
|
{
|
|
public interface IBaseService<T> where T : class, new()
|
|
{
|
|
public IRepository<T> _repository { get; set; }
|
|
}
|
|
}
|