コード例 #1
0
 public TaskCampaignController(ILogger <LoginController> logger,
                               RedisCache distributedCache
                               , IOptions <AppSettings> appSettings,
                               ChariotContext _chariotContext, IMapper mapper) : base(_chariotContext, distributedCache, appSettings, mapper)
 {
     _TaskCampaignBusiness = new TaskCampaignBusiness(_chariotContext, distributedCache, mapper);
 }
コード例 #2
0
 public TrackingBusiness(ChariotContext _chariotContext,
                         RedisCache distributedCache,
                         IMapper mapper) : base(_chariotContext, distributedCache, mapper)
 {
     _trackingDao     = new TrackingDao(_chariotContext);
     _taskCampaignDao = new TaskCampaignDao(_chariotContext);
 }
コード例 #3
0
 public AController(ChariotContext _chariotContext, RedisCache distributedCache, IOptions <AppSettings> appSettings, IMapper mapper)
 {
     //_mapper = mapper;
     Context           = _chariotContext;
     _distributedCache = distributedCache;
     _userBusiness     = new UserBusiness(_chariotContext, distributedCache, _mapper);
     _appSettings      = appSettings.Value;
 }
コード例 #4
0
 // private readonly IMapper _mapper;
 public BranchController(ILogger <OrderController> logger,
                         RedisCache distributedCache
                         , IOptions <AppSettings> appSettings,
                         ChariotContext _chariotContext, IMapper mapper, IHostingEnvironment envrnmt) : base(_chariotContext, distributedCache, appSettings, mapper)
 {
     _taskCampaignBusiness = new TaskCampaignBusiness(_chariotContext, distributedCache, mapper);
     _Env = envrnmt;
 }
コード例 #5
0
 public TrackingDao(ChariotContext context)
     : base(context)
 {
 }
コード例 #6
0
 public TaskCampaignDao(ChariotContext context)
     : base(context)
 {
 }
コード例 #7
0
ファイル: ADao.cs プロジェクト: MardisIT/EngineV2-Docker
 protected ADao(ChariotContext _chariotContext)
 {
     Context = _chariotContext;
     EntityFrameworkManager.ContextFactory = context => _chariotContext;
 }
コード例 #8
0
 public BranchMigrateDao(ChariotContext chariotcontext) :
     base(chariotcontext)
 {
 }
コード例 #9
0
 public UserBusiness(ChariotContext _chariotContext,
                     RedisCache distributedCache
                     , IMapper mapper) : base(_chariotContext, distributedCache, mapper)
 {
     _userDao = new UserDao(_chariotContext);
 }
コード例 #10
0
ファイル: ABusiness.cs プロジェクト: MardisIT/EngineV2-Docker
 protected ABusiness(ChariotContext _chariotContext, RedisCache distributedCache, IMapper mapper)
 {
     Context     = _chariotContext;
     _RedisCache = distributedCache;
     _mapper     = mapper;
 }
コード例 #11
0
 public OrdersDao(ChariotContext context) : base(context)
 {
 }
コード例 #12
0
ファイル: UserDao.cs プロジェクト: MardisIT/EngineV2-Docker
 public UserDao(ChariotContext context)
     : base(context)
 {
 }
コード例 #13
0
 public RouteDao(ChariotContext context)
     : base(context)
 {
 }
コード例 #14
0
 public RedisBusiness(ChariotContext _chariotContext,
                      RedisCache distributedCache,
                      IMapper mapper) : base(_chariotContext, distributedCache, mapper)
 {
 }