コード例 #1
0
 public SuppliersController(ITRepository<AdminPanelContext, Supplier> repository,
                         ITRepository<AdminPanelContext, FilePath> repoFilePath)
 {
     this.repository = repository;
     this.repoFilePath = repoFilePath;
 }
コード例 #2
0
 public WDStringLocalizer(ITRepository translationRepository)
 {
     _tRepository = translationRepository;
 }
コード例 #3
0
ファイル: ColorController.cs プロジェクト: EMqqq/AdminPanel
 public ColorController(ITRepository<AdminPanelContext, Color> repository,
                         ITRepository<AdminPanelContext, FilePath> repoFilePath)
 {
     this.repository = repository;
     this.repoFilePath = repoFilePath;
 }
コード例 #4
0
 public TranslationSegmentAttributeImpl(ITRepository tRepository)
 {
     _tRepository = tRepository;
 }
コード例 #5
0
ファイル: SizeController.cs プロジェクト: EMqqq/AdminPanel
 public SizeController(ITRepository<AdminPanelContext, Size> repository)
 {
     this.repository = repository;
 }
コード例 #6
0
 public CategoryController(ITRepository<AdminPanelContext, Category> repository)
 {
     this.repository = repository;
 }
コード例 #7
0
 public DeliveryMethodController(ITRepository<AdminPanelContext, DeliveryMethod> repository)
 {
     this.repository = repository;
 }