public WebService1(IUserLocationServices _userLocationServices, IUserServices _userServices, 
     ICommentServices _commentServices)
 {
     commentServices = _commentServices;
     userLocationServices = _userLocationServices;
     userServices = _userServices;
 }
 public MapsController()
 {
     locationsServices = new LocationServices(new SmartAudioCityGuideEntities());
     commentServices = new CommentServices(new SmartAudioCityGuideEntities());
     locationController = new LocationsController();
     speechWebServicesController = new SpeechWebServicesController();
 }
 public MapsController(ILocationServices _locationServices, ICommentServices _commentServices)
 {
     locationsServices = _locationServices;
     commentServices = _commentServices;
     locationController = new LocationsController(_locationServices, _commentServices);
     speechWebServicesController = new SpeechWebServicesController(_commentServices);
 }
 public LocationsWebServicesController(ILocationServices _locationServices, ICodeServices _codeServices, IUserLocationServices _userLocationServices, ICommentServices _commentServices)
 {
     locationServices = _locationServices;
     codeServices = _codeServices;
     userLocationServices = _userLocationServices;
     commentServices = _commentServices;
     userLocationWebServices = new UserLocationWebServicesController(_codeServices, _userLocationServices, _commentServices);
 }
 public LocationsWebServicesController()
 {
     locationServices = new LocationServices(new SmartAudioCityGuideEntities());
     codeServices = new CodeServices(new SmartAudioCityGuideEntities());
     userLocationServices = new UserLocationServices(new SmartAudioCityGuideEntities());
     commentServices = new CommentServices(new SmartAudioCityGuideEntities());
     userLocationWebServices = new UserLocationWebServicesController();
 }
Exemple #6
0
 public CommentController(ICommentServices commentServices, UserManager <ApplicationUser> userManager, ILogger <CommentController> logger)
 {
     _commentServices = commentServices;
     _userManager     = userManager;
     _logger          = logger;
 }
 public TemplateController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, ITagServices tagServices, ILinkServices linkServices) : base(entryServices, commentServices, config) 
 {
     _tagServices = tagServices;
     _linkServices = linkServices;
 }
Exemple #8
0
 public ProductsController(IProductServices product, ICategoryServices category, ICommentServices comment, IProductDetailServices productDetail)
 {
     _product       = product;
     _category      = category;
     _comment       = comment;
     _productDetail = productDetail;
 }
 public CommentsController(ICommentServices service)
 {
     _service = service;
 }
 public CommentController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config) : base(entryServices, commentServices, config) { }
 public BaseController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config)
 {
     _entryServices = entryServices;
     _commentServices = commentServices;
     _config = config;
 }
 public LocationsController(ILocationServices _locationServices, ICommentServices _commentServices)
 {
     locationServices = _locationServices;
     commentServices = _commentServices;
 }
 public SpeechWebServicesController()
 {
     commentServices = new CommentServices(new SmartAudioCityGuideEntities());
 }
 public UserLocationWebServicesController(ICodeServices _codeServices, IUserLocationServices _userLocationServices,ICommentServices _commentServices)
 {
     codeServices = _codeServices;
     userLocationServices = _userLocationServices;
     speechWebServices = new SpeechWebServicesController(_commentServices);
 }
 public CommentController(ICommentServices commentServices,
                          IMessageServices messageServices)
 {
     _messageServices = messageServices;
     _commentServices = commentServices;
 }
 public CommentsController(ICommentServices comments)
 {
     this.comments = comments;
 }
 public UserController()
 {
     commentServices = new CommentServices(new SmartAudioCityGuideEntities());
     userServices = new UserServices(new SmartAudioCityGuideEntities());
 }
 public WebService1()
 {
     commentServices = new CommentServices(new SmartAudioCityGuideEntities());
     userLocationServices = new UserLocationServices(new SmartAudioCityGuideEntities());
     userServices = new UserServices(new SmartAudioCityGuideEntities());
 }
Exemple #19
0
 public CommentController(IArticleServiceAddGetArticleComment articleService, ICommentServices commentServices)
 {
     this.articleService  = articleService;
     this.commentServices = commentServices;
 }
 public CommentsController(ITicketingSystemData data, ICommentServices commentServices)
     : base(data)
 {
     this.commentServices = commentServices;
 }
 public HomeController()
 {
     commentServices = new CommentServices(new SmartAudioCityGuideEntities());
 }
 public UserController(ICommentServices _commentServices, IUserServices _userServices)
 {
     commentServices = _commentServices;
     userServices = _userServices;
 }
 public CommentController(ICommentServices _commentServices, ILocationServices _locationServices)
 {
     commentsServices = _commentServices;
     locationServices = _locationServices;
 }
 public EntryController(IEntryServices entryServices, ICommentServices commentServices, ITagServices tagServices, IConfigurationInfo config, IModelCache cache) : base(entryServices, commentServices, config) 
 {
     _tagServices = tagServices;
     _cache = cache;
 }
 public SpeechWebServicesController(ICommentServices _commentServices)
 {
     commentServices = _commentServices;
 }
 public AuthController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, IFormsAuthenticationProvider auth)
     : base(entryServices, commentServices, config) 
 {
     _auth = auth;
 }
 public CommentsController(ICommentServices Comments)
 {
     _Comments = Comments;
 }
 public LinkController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, ILinkServices linkServices) : base(entryServices, commentServices, config) 
 {
     _linkServices = linkServices;
 }
Exemple #29
0
 public CommentController(DataContext context, UserManager <ApplicationUser> userManager, ICommentServices commentServices)
 {
     _context         = context;
     _userManager     = userManager;
     _commentServices = commentServices;
 }
Exemple #30
0
 public AdminCommentController(ICustomerServices customerServices, ICommentServices commentServices, IProductServices productServices)
 {
     _commentServices  = commentServices;
     _productServices  = productServices;
     _customerServices = customerServices;
 }
 public CommentController(ICommentServices commentServices) => this.commentServices = commentServices;
 public RedirectController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, IRedirectServices redirectServices) : base(entryServices, commentServices, config) 
 {
     _redirectServices = redirectServices;
 }
 public CommentsWebServicesController(ICodeServices _codeServices, ILocationServices _locationServices, ICommentServices _commentServices)
 {
     codeServices = _codeServices;
     locationServices = _locationServices;
     commentServices = _commentServices;
 }
Exemple #34
0
 public CommentController(ICommentServices service, UserManager <ApplicationUser> userManager)
 {
     _service     = service;
     _userManager = userManager;
 }
Exemple #35
0
 public CommentsController(ICommentServices comment)
 {
     _comment = comment;
 }
 public CommentsController(IRealEstatesServices realEstatesServices, ICommentServices commentServices)
 {
     this.realEstatesServices = realEstatesServices;
     this.commentServices = commentServices;
 }
Exemple #37
0
 public CommentsController(UserManager <User> userManagerr, ICommentServices commentServices)
 {
     userManager           = userManagerr;
     this._commentServices = commentServices;
 }
Exemple #38
0
 public CommentController(ICommentServices services)
 {
     commentServices = services;
 }
 /// <summary>
 /// 注入
 /// </summary>
 /// <param name="articleServices"></param>
 /// <param name="categoryServices"></param>
 /// <param name="mapper"></param>
 public ArticlesController(IArticleServices articleServices, IArticleCategoryServices categoryServices, ICommentServices commentServices, IMapper mapper)
 {
     _articleServices  = articleServices;
     _categoryServices = categoryServices;
     _commentServices  = commentServices;
     _mapper           = mapper;
 }
 public HomeController(IAlbumServices albumServices, IPhotoServices photoServices, ICommentServices commentServices)
 {
     _albumServices   = albumServices;
     _photoServices   = photoServices;
     _commentServices = commentServices;
 }
 public CommentManagerController(ICommentServices commentServices)
 {
     _commentServices = commentServices;
 }
 public CommentController()
 {
     commentsServices = new CommentServices(new SmartAudioCityGuideEntities());
     locationServices = new LocationServices(new SmartAudioCityGuideEntities());
 }
 public HomeController(ICommentServices _commentServices)
 {
     commentServices = _commentServices;
 }
 public CommentController(ICommentServices services, IContentServices contentService)
 {
     this._services       = services;
     this._contentService = contentService;
 }