public ProductClientController(IProductClient productClient, IRatingClient ratingClient, ICommentClient commentClient, IMemoryCache memoryCache)
 {
     _productClient = productClient;
     _ratingClient  = ratingClient;
     _commentClient = commentClient;
     _memoryCache   = memoryCache;
 }
Example #2
0
 public AccountController(UserManager <AppUser> ustManager, SignInManager <AppUser> signManager,
                          IImageClient imgClient, ICommentClient commClient)
 {
     userManager   = ustManager;
     signInManager = signManager;
     imageClient   = imgClient;
     commentClient = commClient;
 }
Example #3
0
 public CommentDownloader(IPathOrganizer pathOrganizer, ICommentClient client, ILogger logger, ICommentConverter converter, ICommentStream stream)
 {
     this._client           = client;
     this._logger           = logger;
     this._commentConverter = converter;
     this._commentStream    = stream;
     this._pathOrganizer    = pathOrganizer;
 }
 public CommentController(ICommentClient commentClien, UserManager <AppUser> usrMgr)
 {
     commentClient = commentClien;
     userManager   = usrMgr;
 }
 public ImageController(IImageClient imgClient, ICommentClient comClient, UserManager <AppUser> usrMgr)
 {
     imageClient   = imgClient;
     commentClient = comClient;
     userManager   = usrMgr;
 }
Example #6
0
 public CommentService(ICommentClient client)
 {
     _client = client;
 }
Example #7
0
 public ImportController(ISessionFactory sessionFactory, IIssueClient issueClient, ICommentClient commentClient)
 {
     this.issueClient   = issueClient;
     this.commentClient = commentClient;
     session            = sessionFactory.GetCurrentSession();
 }
 public CommentClientController(ICommentClient commentClient)
 {
     _commentClient = commentClient;
 }