コード例 #1
0
        public ClassificationService(IClassificationRepository repository)
            : base(repository)
        {
            _repository = repository;

            Initialize();
        }
コード例 #2
0
 public ClientService(IClientRepository repository, IUserRepository userRepository, IGenderRepository genderRepository, IClassificationRepository classificationRepository, IRegionRepository regionRepository, ICityRepository cityRepository)
 {
     _repository               = repository;
     _userRepository           = userRepository;
     _genderRepository         = genderRepository;
     _classificationRepository = classificationRepository;
     _regionRepository         = regionRepository;
     _cityRepository           = cityRepository;
 }
コード例 #3
0
 public ContentController(
     UserManager <SuUserModel> userManager
     , SuDbContext context
     , IClassificationRepository classification
     , ILanguageRepository language
     ) : base(userManager, language)
 {
     _classification = classification;
     _context        = context;
 }
コード例 #4
0
 public PartialController(UserManager <SuUserModel> userManager
                          , IClassificationStatusRepository classificationStatus
                          , IClassificationRepository classification
                          , IClassificationLanguageRepository classificationLanguage
                          , ILanguageRepository language
                          , SuDbContext context
                          ) : base(userManager, language)
 {
     _classificationStatus   = classificationStatus;
     _classification         = classification;
     _classificationLanguage = classificationLanguage;
     _context = context;
 }
コード例 #5
0
 public AllSeedDataService(
     IClassificationRepository classificationRepository,
     IEnrollmentMethodRepository enrollmentMethodRepository,
     IEnrollmentSystemRepository enrollmentSystemRepository,
     ISalesExecRepository salesExecRepository,
     IVBCarrierRepository vBCarrierRepository)
 {
     this._classificationRepository   = classificationRepository;
     this._enrollmentMethodRepository = enrollmentMethodRepository;
     this._enrollmentSystemRepository = enrollmentSystemRepository;
     this._salesExecRepository        = salesExecRepository;
     this._vBCarrierRepository        = vBCarrierRepository;
 }
コード例 #6
0
 public CustomerController(
     IAuthorizationService authserv, ICustomerRepository cusrepo, IGenderRepository genrepo,
     ICityRepository citrepo, IRegionRepository regrepo, IClassificationRepository clarepo,
     IUserRepository userepo)
 {
     authorizationService     = authserv;
     customerRepository       = cusrepo;
     genderRepository         = genrepo;
     cityRepository           = citrepo;
     regionRepository         = regrepo;
     classificationRepository = clarepo;
     userRepository           = userepo;
 }
コード例 #7
0
 public HomeController(ICustomerService customerService,
                       IClassificationRepository classificationRepository,
                       IGenderRepository genderRepository,
                       ICityRepository cityRepository,
                       IRegionRepository regionRepository,
                       IUserSysRepository userSysRepository)
 {
     _customerService          = customerService;
     _classificationRepository = classificationRepository;
     _genderRepository         = genderRepository;
     _cityRepository           = cityRepository;
     _regionRepository         = regionRepository;
     _userSysRepository        = userSysRepository;
 }
コード例 #8
0
ファイル: OrderingController.cs プロジェクト: jyuma/Charltone
 public OrderingController(IOrderingRepository orderings, 
     IOrderingHeaderContentRepository headerContent, 
     IInstrumentTypeRepository instrumentTypes,
     IClassificationRepository classifications,
     ISubClassificationRepository subClassifications,
     IPhotoRepository photos)
 {
     _orderings = orderings;
     _headerContent = headerContent;
     _photos = photos;
     _instrumentTypes = instrumentTypes;
     _classifications = classifications;
     _subClassifications = subClassifications;
 }
コード例 #9
0
 public InstrumentController(IProductRepository products,
                             IInstrumentTypeRepository instrumentTypes,
                             IClassificationRepository classifications,
                             ISubClassificationRepository subClassifications,
                             IProductStatusRepository productStatus,
                             IPhotoRepository photos)
 {
     _products           = products;
     _instrumentTypes    = instrumentTypes;
     _classifications    = classifications;
     _subClassifications = subClassifications;
     _productStatus      = productStatus;
     _photos             = photos;
 }
コード例 #10
0
 public ExternalPageController(UserManager <SuUserModel> userManager
                               , IClassificationStatusRepository classificationStatus
                               , IClassificationRepository classification
                               , IClassificationLanguageRepository classificationLanguage
                               , ILanguageRepository language
                               , SuDbContext context
                               )
 {
     _userManager            = userManager;
     _classificationStatus   = classificationStatus;
     _classification         = classification;
     _classificationLanguage = classificationLanguage;
     _language = language;
     _context  = context;
 }
コード例 #11
0
ファイル: AppController.cs プロジェクト: MartinBG/Gva
 public AppController(IUnitOfWork unitOfWork,
     IAppRepository appRepository,
     IDocRepository docRepository,
     IUserRepository userRepository,
     IClassificationRepository classificationRepository,
     INomRepository nomRepository,
     IDataGenerator dataGenerator)
 {
     this.unitOfWork = unitOfWork;
     this.appRepository = appRepository;
     this.docRepository = docRepository;
     this.userRepository = userRepository;
     this.classificationRepository = classificationRepository;
     this.nomRepository = nomRepository;
     this.dataGenerator = dataGenerator;
 }
コード例 #12
0
 public ClassificationService(IClassificationRepository classificationRepository)
 {
     this.classificationRepository = classificationRepository;
 }
コード例 #13
0
 public ClassificationService(IClassificationRepository repository)
     : base(repository)
 {
 }
 public CheckClassificationExistFilterAttribute(IClassificationRepository classificationRepository)
 {
     _classificationRepository = classificationRepository;
 }
コード例 #15
0
 public ClassificationController(IClassificationRepository classificationRepository, ILogger <ClassificationController> logger, IMapper mapper)
 {
     _classificationRepository = classificationRepository;
     _logger = logger;
     _mapper = mapper;
 }
コード例 #16
0
 public ClassificationDomain(IClassificationRepository classificationRepository, IMapper mapper)
 {
     _classificationRepository = classificationRepository;
     _mapper = mapper;
 }
コード例 #17
0
 public ClassificationService(IClassificationRepository classificationRepository)
 {
     this._classificationRepository = classificationRepository;
 }
コード例 #18
0
 public ClassificationService(IClassificationRepository classificationRepository) : base(classificationRepository)
 {
     _classificationRepository = classificationRepository;
 }
コード例 #19
0
 public ClassificationApplication(IClassificationRepository classificationRepository)
 {
     _classificationRepository = classificationRepository;
 }