18 lines
556 B
C#
18 lines
556 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_EnrollmentinproductionServices : BaseServices<D_Enrollmentinproduction>, ID_EnrollmentinproductionServices
|
|
{
|
|
private readonly IBaseRepository<D_Enrollmentinproduction> _dal;
|
|
public D_EnrollmentinproductionServices(IBaseRepository<D_Enrollmentinproduction> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
}
|
|
} |