NewGaoKaoApi/New_College.Services/D_MajorServices.cs

18 lines
454 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_MajorServices : BaseServices<D_Major>, ID_MajorServices
{
private readonly IBaseRepository<D_Major> _dal;
public D_MajorServices(IBaseRepository<D_Major> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}