Example #1
0
 public PostFileStreamService(AQCMSContext dbCMSContext,
                              IWorkContext workContext,
                              IMapper mapper) : base(dbCMSContext, workContext, mapper)
 {
 }
Example #2
0
 public PostService(AQCMSContext dbCMSContext, IWorkContext workContext, IMapper mapper,
                    IPostFileStreamService postFileStreamService)
     : base(dbCMSContext, workContext, mapper)
 {
     _postFileStreamService = postFileStreamService;
 }
Example #3
0
 public ServiceBase(AQCMSContext dbCMSContext, IWorkContext workContext, IMapper mapper)
 {
     _dbCMSContext = dbCMSContext;
     _workContext  = workContext;
     _mapper       = mapper;
 }
Example #4
0
 public SubscriberService(AQCMSContext dbCMSContext, IWorkContext workContext, IMapper mapper) : base(dbCMSContext, workContext, mapper)
 {
 }
Example #5
0
 public PostCategoryService(
     AQCMSContext aQCMSContext,
     IWorkContext workContext, IMapper mapper)
     : base(aQCMSContext, workContext, mapper)
 {
 }