NewGaoKaoApi/New_College.Services/T_GearInfoServices.cs

18 lines
472 B
C#

using New_College.IServices;
using New_College.Model.Models;
using New_College.Services.BASE;
using New_College.IRepository.Base;
namespace New_College.Services
{
public class T_GearInfoServices : BaseServices<T_GearInfo>, IT_GearInfoServices
{
private readonly IBaseRepository<T_GearInfo> _dal;
public T_GearInfoServices(IBaseRepository<T_GearInfo> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}