Exemple #1
0
 public BaseService(SocialmediaDBContext _context, IMapper _mapper, IPaginationService <TEntity> _pagination)
 {
     this._pagination = _pagination;
     this._mapper     = _mapper;
     this._context    = _context;
     _entity          = _context.Set <TEntity>();
 }
 public SecurityService(SocialmediaDBContext _context, IMapper _mapper, IPaginationService <Security> _pagination, IAppsettingService _appsetting) : base(_context, _mapper, _pagination)
 {
     this._appsetting = _appsetting;
 }
Exemple #3
0
 public UserService(SocialmediaDBContext _context, IMapper _mapper, IPaginationService <User> _pagination) : base(_context, _mapper, _pagination)
 {
 }