Example #1
0
 public ServiceBase(AQConfigContext dbConfigContext,
                    AQYachtContext dbYachtContext,
                    IMapper mapper)
 {
     _dbConfigContext = dbConfigContext;
     _dbYachtContext  = dbYachtContext;
     _mapper          = mapper;
 }
Example #2
0
 public ServiceBase(AQConfigContext dbConfigContext,
                    IWorkContext workContext,
                    IMapper mapper)
 {
     _dbConfigContext = dbConfigContext;
     _workContext     = workContext;
     _mapper          = mapper;
 }
Example #3
0
 public CommonValueService(
     IWorkContext workContext,
     IMapper mapper,
     AQConfigContext aqcontext)
 {
     _workContext     = workContext;
     _mapper          = mapper;
     _dbConfigContext = aqcontext;
 }
 public CommonResourceService(
     IWorkContext workContext,
     IMapper mapper,
     AQConfigContext dbConfigContext)
 {
     _workContext     = workContext;
     _mapper          = mapper;
     _dbConfigContext = dbConfigContext;
 }
Example #5
0
 public PermissionService(AQConfigContext dbConfigContext,
                          IWorkContext workContext,
                          IMapper mapper) : base(dbConfigContext, workContext, mapper)
 {
 }
 public PortalLocationService(AQConfigContext dbContext,
                              IWorkContext workContext,
                              IMapper mapper) : base(dbContext, workContext, mapper)
 {
 }
Example #7
0
 public YachtTourCategoryService(AQYachtContext yachtContext,
                                 AQConfigContext configContext,
                                 IWorkContext workContext,
                                 IMapper mapper) : base(configContext, yachtContext, mapper)
 {
 }
 public MembershipPrivilegeService(AQConfigContext dbConfigContext,
                                   IWorkContext workContext,
                                   IMapper mapper) : base(dbConfigContext, workContext, mapper)
 {
 }