public PathViewComponent(IWriterPathService writerPathService)
 {
     _writerPathService = writerPathService;
 }
 public WritingDayHeaderViewComponent(IWriterPathService writerPathSerivce)
 {
     _writerPathService = writerPathSerivce;
 }
 public HiddenQuoteViewComponent(IWriterPathService writerPathService)
 {
     _writerPathService = writerPathService;
 }
 public WriterController(IWriterPathService writerPathService, InMemoryUserDataRepository userDataRepository)
 {
     _writerPathService = writerPathService;
     UserDataRepository = userDataRepository;
 }
Пример #5
0
 public WritingAreaController(IWriterPathService writerPathSerivce,
                              IStorageService storageService)
 {
     _writerPathService = writerPathSerivce;
     _storageService    = storageService;
 }