public SendReceiptService(
     ICommandBus commandBus,
     IIBSServiceProvider ibsServiceProvider,
     IOrderDao orderDao,
     IOrderPaymentDao orderPaymentDao,
     ICreditCardDao creditCardDao,
     IAccountDao accountDao,
     IPromotionDao promotionDao,
     IReportDao reportDao,
     IServerSettings serverSettings,
     IGeocoding geocoding,
     ILogger logger)
 {
     _serverSettings     = serverSettings;
     _logger             = logger;
     _ibsServiceProvider = ibsServiceProvider;
     _orderDao           = orderDao;
     _orderPaymentDao    = orderPaymentDao;
     _accountDao         = accountDao;
     _promotionDao       = promotionDao;
     _reportDao          = reportDao;
     _creditCardDao      = creditCardDao;
     _geocoding          = geocoding;
     _commandBus         = commandBus;
 }
Beispiel #2
0
 public ReportEngine(IDaoFactory daoFactory)
 {
     reportDao = daoFactory.GetReportDao();
     projectDao = daoFactory.GetProjectDao();
     taskDao = daoFactory.GetTaskDao();
     milestoneDao = daoFactory.GetMilestoneDao();
 }
Beispiel #3
0
 public ReportEngine(IDaoFactory daoFactory)
 {
     reportDao    = daoFactory.GetReportDao();
     projectDao   = daoFactory.GetProjectDao();
     taskDao      = daoFactory.GetTaskDao();
     milestoneDao = daoFactory.GetMilestoneDao();
 }
Beispiel #4
0
 public ExportDataService(IAccountDao accountDao, IReportDao reportDao, IServerSettings serverSettings, IAppStartUpLogDao appStartUpLogDao, IPromotionDao promotionsDao)
 {
     _accountDao       = accountDao;
     _reportDao        = reportDao;
     _serverSettings   = serverSettings;
     _appStartUpLogDao = appStartUpLogDao;
     _promotionsDao    = promotionsDao;
 }
Beispiel #5
0
        public SQLeBasedCovidDashboard()
        {
            IDaoFactory factory = new DaoFactorySQLe();

            stateDao    = factory.StateDao;
            districtDao = factory.DistrictDao;
            userDao     = factory.UserDao;
            reportDao   = factory.ReportDao;
        }
Beispiel #6
0
 public PostWrapper(IPostDao postDao,
                    IMembershipService membershipService,
                    ISubDao subDao,
                    IVoteDao voteDao,
                    IPermissionDao permissionDao,
                    IReportDao reportDao)
 {
     _postDao           = postDao;
     _membershipService = membershipService;
     _subDao            = subDao;
     _voteDao           = voteDao;
     _permissionDao     = permissionDao;
     _reportDao         = reportDao;
 }
Beispiel #7
0
 public PostWrapper(IPostDao postDao, 
     IMembershipService membershipService, 
     ISubDao subDao, 
     IVoteDao voteDao,
     IPermissionDao permissionDao,
     IReportDao reportDao)
 {
     _postDao = postDao;
     _membershipService = membershipService;
     _subDao = subDao;
     _voteDao = voteDao;
     _permissionDao = permissionDao;
     _reportDao = reportDao;
 }
Beispiel #8
0
 public ReportHelper()
 {
     reportDao = new ReportDao();
 }
Beispiel #9
0
 public ReportEngine(IDaoFactory daoFactory)
 {
     reportDao = daoFactory.GetReportDao();
     projectDao = daoFactory.GetProjectDao();
 }
Beispiel #10
0
 private ReportService()
 {
     _daoManager = ServiceConfig.GetInstance().DaoManager;
     _runReportDao = _daoManager.GetDao(typeof(IReportDao)) as IReportDao;
 }
Beispiel #11
0
 public ReportEngine(IDaoFactory daoFactory, EngineFactory factory)
 {
     reportDao    = daoFactory.GetReportDao();
     this.factory = factory;
 }
Beispiel #12
0
 public ReportLogic()
 {
     dao = new ReportDaoImp();
 }
Beispiel #13
0
 public ReportController(IReportDao reportDao)
 {
     this._reportDao = reportDao;
 }
Beispiel #14
0
 public ReportEngine(IDaoFactory daoFactory)
 {
     reportDao  = daoFactory.GetReportDao();
     projectDao = daoFactory.GetProjectDao();
 }
Beispiel #15
0
 private ReportService()
 {
     _daoManager   = ServiceConfig.GetInstance().DaoManager;
     _runReportDao = _daoManager.GetDao(typeof(IReportDao)) as IReportDao;
 }