Ejemplo n.º 1
0
 public MainViewModel(INavigationService navigationService, IAcArticleService acArticleService)
 {
     _navigationService = navigationService;
     _acArticleService  = acArticleService;
 }
Ejemplo n.º 2
0
 public void SetUp()
 {
     _acArticleService = new AcArticleService(new ScreenService());
 }
Ejemplo n.º 3
0
 public CommentViewModel(IAcArticleService acArticleService)
 {
     _acArticleService = acArticleService;
 }
Ejemplo n.º 4
0
 public ArticleCommentAdapter(IAcArticleService acArticleService, int contentId)
 {
     _acArticleService = acArticleService;
     _contentId        = contentId;
 }
Ejemplo n.º 5
0
 public ArticleAdapter(IAcArticleService acArticleService, Channel channel)
 {
     _acArticleService = acArticleService;
     Channel           = channel;
 }