18 lines
532 B
C#
18 lines
532 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_MajorMapOccouptionServices : BaseServices<D_MajorMapOccouption>, ID_MajorMapOccouptionServices
|
|
{
|
|
private readonly IBaseRepository<D_MajorMapOccouption> _dal;
|
|
public D_MajorMapOccouptionServices(IBaseRepository<D_MajorMapOccouption> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
}
|
|
} |