public ShortcutsController(ICosmosDBRepository <Shortcut> repositoryService)
 {
     this.repository = repositoryService;
 }
Esempio n. 2
0
 public IndexModel(ICosmosDBRepository <Article> repositoryService, ICosmosDBRepository <ArticleTag> tagService, IActivityLog activityLogRepository) : base(activityLogRepository, "Blog")
 {
     this.repository     = repositoryService;
     this.tagsRepository = tagService;
 }
 /// <summary>
 /// DI Constructor
 /// </summary>
 public ResponseDataManager(IMapper mapper, ICosmosDBRepository <ResponseDAO> repoResponses)
 {
     _mapper        = mapper;
     _repoResponses = repoResponses;
 }
Esempio n. 4
0
 public AusfahrtenModel(ICosmosDBRepository <TrackItem> repositoryService, IActivityLog activityLogRepository, IFunctionSiteTools functionSiteTools) : base(activityLogRepository, "Rad")
 {
     this.repository    = repositoryService;
     _functionSiteTools = functionSiteTools;
 }
Esempio n. 5
0
 public IndexModel(ICosmosDBRepository <TrackItem> trackRepository, ICosmosDBRepository <ListCategory> categoryRepository, ICosmosDBRepository <Article> articleRepository, IActivityLog activityLog, IFunctionSiteTools functionSiteTools) : base(activityLog, "Ausfahrten")
 {
     this.repository         = trackRepository;
     this.categoryRepository = categoryRepository;
     this.articleRepository  = articleRepository;
     _functionSiteTools      = functionSiteTools;
 }
Esempio n. 6
0
 public CalendarController(ICosmosDBRepository <CalendarItem> repositoryService)
 {
     this.repository = repositoryService;
 }
Esempio n. 7
0
 public PatientController(ICosmosDBRepository <Patient> _respository)
 {
     respository    = _respository;
     patientManager = new PatientManager(respository);
 }
 public SendMailModel(ICosmosDBRepository <CalendarItem> calendarRepository, IFunctionSiteTools functionSiteTools)
 {
     _calendarRepository = calendarRepository;
     _functionSiteTools  = functionSiteTools;
 }
Esempio n. 9
0
 public EditContentItemModel(ICosmosDBRepository <CommentedLinkItem> repository)
 {
     _repository = repository;
 }