コード例 #1
0
 public ManualsController(IManualsService manualsService, IAttachmentsService attachmentsService,
                          IMapper mapper)
 {
     _manualsService     = manualsService;
     _attachmentsService = attachmentsService;
     _mapper             = mapper;
 }
コード例 #2
0
 public ManualsController(IManualsService manualsService, IUsersService usersService, IMapper mapper)
 {
     _manualsService = manualsService;
     _usersService   = usersService;
     _mapper         = mapper;
 }
コード例 #3
0
        public FeaturesController(IManualsService manualsService, IMapper mapper)

        {
            _manualsService = manualsService;
            _mapper         = mapper;
        }