19 lines
470 B
C#
19 lines
470 B
C#
using New_College.IRepository.Base;
|
|
using New_College.IServices;
|
|
using New_College.Model.Models;
|
|
using New_College.Services.BASE;
|
|
|
|
namespace New_College.Services
|
|
{
|
|
public partial class PasswordLibServices : BaseServices<PasswordLib>, IPasswordLibServices
|
|
{
|
|
IBaseRepository<PasswordLib> _dal;
|
|
public PasswordLibServices(IBaseRepository<PasswordLib> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
|
|
}
|
|
}
|