Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Interface/Base/IBaseService.cs

15 lines
321 B
C#
Raw Normal View History

2022-04-08 23:44:25 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Repository;
2023-01-01 23:06:11 +08:00
namespace Yi.Framework.Interface.Base
2022-04-08 23:44:25 +08:00
{
2023-01-01 23:06:11 +08:00
public interface IBaseService<T> where T : class, new()
2022-04-08 23:44:25 +08:00
{
public IRepository<T> _repository { get; set; }
}
}