示例#1
0
 public NewsFacade(INewsService newsService, INewsTranslationService typeTranslationService, IManageStorage manageStorage)
 {
     _newsService            = newsService;
     _typeTranslationService = typeTranslationService;
     _manageStorage          = manageStorage;
 }
示例#2
0
 public NewsFacade(INewsService newsService, IUnitOfWorkAsync unitOfWork, INewsTranslationService typeTranslationService, IManageStorage manageStorage) : base(unitOfWork)
 {
     _newsService            = newsService;
     _typeTranslationService = typeTranslationService;
     _manageStorage          = manageStorage;
 }