NewGaoKaoApi/New_College.Services/D_MajorInformationServices.cs

18 lines
520 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 D_MajorInformationServices : BaseServices<D_MajorInformation>, ID_MajorInformationServices
{
private readonly IBaseRepository<D_MajorInformation> _dal;
public D_MajorInformationServices(IBaseRepository<D_MajorInformation> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}