Ejemplo n.º 1
0
 public CollectionManagementController(
     ICardAppService cardAppService,
     IRarityAppService rarityAppService,
     ICollectionAppService collectionAppService,
     ICollectorAppService collectorAppService)
 {
     _cardAppService       = cardAppService;
     _rarityAppService     = rarityAppService;
     _collectionAppService = collectionAppService;
     _collectorAppService  = collectorAppService;
 }
        public MemberController(ICourseBoundPersonnelAppService _service, ICourseInfoAppService _courseService,
                                ICollectionAppService _collectionAppService, IClassUserAppService _classuserService,
                                ICourseBoundConfigureTypeAppService _cbtService, ICourseBoundConfigureTypeAppService courseBoundConfigureTypeAppService
                                , IClassesInfoAppService classesInfoAppService)
        {
            courseBoundService   = _service;
            courseService        = _courseService;
            collectionAppService = _collectionAppService;

            classuserService = _classuserService;
            cbtService       = _cbtService;
            _courseBoundConfigureTypeAppService = courseBoundConfigureTypeAppService;
            _classesInfoAppService = classesInfoAppService;
        }
Ejemplo n.º 3
0
 public CollectionController(ICollectionAppService AppService)
 {
     _AppService = AppService;
 }
 public CollectionController(ICollectionAppService collectionAppService, ICourseInfoAppService courseInfoAppService)
 {
     _collectionAppService = collectionAppService;
     _courseInfoAppService = courseInfoAppService;
 }