コード例 #1
0
        //private readonly ILogger logger;

        public EArchiveController(IHttpContextAccessor accessor,
                                  IMapper mapper,
                                  IMailArchiveService mailArchiveService,
                                  IWorkPlaceService workPlaceService,
                                  IClassificationService classificationService,
                                  IMailTypeService mailTypeService,
                                  IPostTypeService postTypeService,
                                  ISecurityService securityService,
                                  IStatusService statusService,
                                  IImageArchiveService imageArchiveService,
                                  IUserService userService
                                  //ILogger logger
                                  ) : base(accessor, userService)
        {
            this.accessor              = accessor;
            this.mapper                = mapper;
            this.mailArchiveService    = mailArchiveService;
            this.workPlaceService      = workPlaceService;
            this.classificationService = classificationService;
            this.mailTypeService       = mailTypeService;
            this.postTypeService       = postTypeService;
            this.securityService       = securityService;
            this.statusService         = statusService;
            this.imageArchiveService   = imageArchiveService;
            //this.logger = logger;
        }
コード例 #2
0
 public ArchiveController(IHttpContextAccessor accessor,
                          IMapper mapper,
                          IClassificationService classification,
                          IMailTypeService mailType,
                          IPostTypeService postType,
                          ISecurityService security,
                          IStatusService status,
                          IUserService userService) : base(accessor, userService)
 {
     this.mapper         = mapper;
     this.classification = classification;
     this.mailType       = mailType;
     this.postType       = postType;
     this.security       = security;
     this.status         = status;
     this.userService    = userService;
 }
コード例 #3
0
 public MailTypeController(IMailTypeService mailTypeService)
 {
     _mailTypeService = mailTypeService;
 }