コード例 #1
0
        public HomeController(
            WebDbContext Context,
            IAddresServices Address,
            WebEventoo_DomainClasses.Services.IExhibitionServices Cermoney,
            IColorService Color,
            ICommentService Comment,
            IEductionservices Eduction,
            IEventServices Event,
            WebExhibitionoo_DomainClasses.Services.IExhibitionServices Exhibition,
            IInformationService Information,
            IHostingEnvironment hostingEnvironment,
            IReportServices ReportServices,
            IPlaceServices Place)
        {
            FAddressServices    = Address;
            FCermoneyServices   = Cermoney;
            FColorServices      = Color;
            FCommentServices    = Comment;
            FEductionServices   = Eduction;
            FEventServices      = Event;
            FExhibitionServices = Exhibition;
            FInformtionSErvices = Information;
            FPlacesServices     = Place;
            FreportServices     = ReportServices;
            context             = Context;

            this._hostingEnvironment = hostingEnvironment;
        }
コード例 #2
0
 public ReportsController(IReportServices reportServices, IBlobServices blobServices, IUserServices userServices, IIndustryServices industryServices)
 {
     _reportServices   = reportServices;
     _blobServices     = blobServices;
     _userServices     = userServices;
     _industryServices = industryServices;
 }
コード例 #3
0
 public FixturesController(IFixtureServices fixtureServices, 
     IReportServices reportServices,
     IPlayerServices playerServices)
 {
     _fixtureServices = fixtureServices;
     _playerServices = playerServices;
     _reportServices = reportServices;
     Logger = NullLogger.Instance;
 }
コード例 #4
0
 public HangfireService(IPostService postService,
                        IPostRepository postRepository,
                        ILoggingRepository loggingRepository,
                        IFcmRepository fcmRepository,
                        IReportRepository reportRepository,
                        ICommentRepository commentRepository,
                        ICommentService commentService,
                        IReplyCommentRepository replyCommentRepository, IReportServices reportServices)
 {
     this.postService            = postService;
     this.postRepository         = postRepository;
     this.loggingRepository      = loggingRepository;
     this.fcmRepository          = fcmRepository;
     this.reportRepository       = reportRepository;
     this.commentRepository      = commentRepository;
     this.commentService         = commentService;
     this.replyCommentRepository = replyCommentRepository;
     this.reportServices         = reportServices;
 }
コード例 #5
0
        public ReportController
        (
            IRALServices rALServices,
            IReportServices reportServices,
            IMapper mapper
        )
        {
            if (rALServices == null)
            {
                throw new ArgumentNullException("RALServices");
            }
            if (reportServices == null)
            {
                throw new ArgumentNullException("ReportServices");
            }
            if (mapper == null)
            {
                throw new ArgumentNullException("Mapper");
            }

            _rALServices    = rALServices;
            _reportServices = reportServices;
            _mapper         = mapper;
        }
コード例 #6
0
 public F2DemoController(IReportServices reportServices)
 {
     this._reportServices = reportServices;
 }
コード例 #7
0
 public ReportsAPIController(IReportServices reportServices, IBlobServices blobServices, IUserServices userServices)
 {
     this._reportServices = reportServices;
     this._blobServices   = blobServices;
     this._userServices   = userServices;
 }
コード例 #8
0
 public MostDownloadedViewComponent(IReportServices reportServices)
 {
     this._reportServices = reportServices;
 }
コード例 #9
0
 public NewestViewComponent(IReportServices reportServices)
 {
     this._reportServices = reportServices;
 }
コード例 #10
0
 public ReportsController(IReportServices reportServices)
 {
     _reportServices = reportServices;           
     Logger = NullLogger.Instance;
 }
コード例 #11
0
 public ReportController(IReportServices reportServices)
 {
     this.reportServices = reportServices;
 }
コード例 #12
0
 public BaseController()
 {
     this._reportServices = new ReportServices();
 }
コード例 #13
0
ファイル: ReportController.cs プロジェクト: zenit1/beame-lfe
 public ReportController()
 {
     _reportServices    = DependencyResolver.Current.GetService <IReportServices>();
     _quizAdminServices = DependencyResolver.Current.GetService <IQuizAdminServices>();
 }
コード例 #14
0
ファイル: ReportController.cs プロジェクト: Imran-shoeb/MgApp
 public ReportController()
 {
     _reportServices       = new ReportServices();
     _reportDetailServices = new ReportDetailServices();
 }
コード例 #15
0
 public DeletedReportsController(IReportServices reportServices)
 {
     _reportServices = reportServices;
 }
コード例 #16
0
ファイル: ReportController.cs プロジェクト: sanamsitoula/JAS
 public ReportController(IReportServices reportservices)
 {
     _reportservices = reportservices;
 }
コード例 #17
0
 public PendingReportsController(IReportServices reportServices, IUserServices userServices, IEmailSenderServices emailSenderServices)
 {
     _reportServices      = reportServices ?? throw new ArgumentNullException("ReportServices can NOT be null");
     _userServices        = userServices ?? throw new ArgumentNullException("UserServices can NOT be null");
     _emailSenderServices = emailSenderServices ?? throw new ArgumentNullException("EmailSenderServices can NOT be null");
 }
コード例 #18
0
 public ReportController(IAcsService permmisionService, IReportServices reportServices1)
 {
     _permmisionService = permmisionService;
     _reportServices    = reportServices1;
 }
コード例 #19
0
 public ReportController(IReportServices ReportServices)
 {
     reportServices = ReportServices;
 }
コード例 #20
0
 public HomeController(IReportServices report)
 {
     this.reportServices = report;
 }
コード例 #21
0
 public FeaturedViewComponent(IReportServices reportServices)
 {
     this._reportServices = reportServices;
 }