Beispiel #1
0
 public Initializer(CareersDbContext context, IClientService clientService, ISpecialistService specialistService, UserManager <AppUser> userManager)
 {
     this.context           = context;
     this.clientService     = clientService;
     this.specialistService = specialistService;
     this.userManager       = userManager;
 }
Beispiel #2
0
 public SpecialistController([FromServices]
                             IUserService userService,
                             IArticleLikeService articleLikeService,
                             IArticleCommentService articleCommentService,
                             IArticlePublishService articlePublishService,
                             ISpecialistService specialistService,
                             IReviewService reviewService,
                             ISessionService sessionService,
                             IProblemService problemService,
                             IProblemImageService problemImageService,
                             IProblemResourceService problemResourceService,
                             IProblemResourceTaskService problemResourceTaskService,
                             SessionsTimerService sessionsTimerService)
 {
     UserService                = userService;
     ArticleLikeService         = articleLikeService;
     ArticleCommentService      = articleCommentService;
     ArticlePublishService      = articlePublishService;
     SpecialistService          = specialistService;
     ReviewService              = reviewService;
     SessionService             = sessionService;
     ProblemService             = problemService;
     ProblemImageService        = problemImageService;
     ProblemResourceService     = problemResourceService;
     ProblemResourceTaskService = problemResourceTaskService;
     SessionsTimerService       = sessionsTimerService;
 }
Beispiel #3
0
 public SuperadminController([FromServices]
                             IUserService userService,
                             ISpecialistService specialistService,
                             ISessionService sessionService,
                             IReviewService reviewService,
                             IProblemService problemService,
                             IProblemImageService problemImageService,
                             IProblemResourceService problemResourceService,
                             IClientVideoReviewService videoReviewService,
                             IFileService fileService,
                             IArticleService articleService,
                             IArticleLikeService articleLikeService,
                             IArticleCommentService articleCommentService,
                             IArticlePublishService articlePublishService)
 {
     UserService            = userService;
     SpecialistService      = specialistService;
     SessionService         = sessionService;
     ReviewService          = reviewService;
     ProblemService         = problemService;
     ProblemImageService    = problemImageService;
     ProblemResourceService = problemResourceService;
     VideoReviewService     = videoReviewService;
     FileService            = fileService;
     ArticleService         = articleService;
     ArticleLikeService     = articleLikeService;
     ArticleCommentService  = articleCommentService;
     ArticlePublishService  = articlePublishService;
 }
 public ReviewController(IReviewService reviewService, IMapper mapper, ICustomerService customerService, ISpecialistService specialistService)
 {
     _reviewService     = reviewService;
     _mapper            = mapper;
     _customerService   = customerService;
     _specialistService = specialistService;
 }
 public SpecialistController(ISpecialistService specialistService, IAssignorService assignorService, IAssignmentService assignmentService, IMapper mapper)
 {
     this.specialistService = specialistService;
     this.assignorService   = assignorService;
     this.assignmentService = assignmentService;
     this.mapper            = mapper;
 }
 public OrderController(UserManager <AppUser> userManager, ISpecialistService specialistService, IOrderService orderService, IMessageService messageService)
 {
     _userManager       = userManager;
     _specialistService = specialistService;
     _orderService      = orderService;
     _messageService    = messageService;
 }
Beispiel #7
0
 public HomeController(ISpecialistService specialistService, IReviewService reviewService,
                       IMeetingPointService meetingPointService, ICategoryService categoryService, Initializer initializer)
 {
     _specialistService   = specialistService;
     _reviewService       = reviewService;
     _meetingPointService = meetingPointService;
     _categoryService     = categoryService;
 }
 public SpecialistsController([FromServices]
                              ISpecialistService specialistService,
                              ISessionService sessionService,
                              IReviewService reviewService)
 {
     SpecialistService = specialistService;
     SessionService    = sessionService;
     ReviewService     = reviewService;
 }
Beispiel #9
0
 public AuthController(LocationService locationService, SignInManager <AppUser> signInManager, UserManager <AppUser> userManager, SenderService senderService, ISpecialistService specialistService, IClientService clientService)
 {
     _locationService   = locationService;
     _signInManager     = signInManager;
     _userManager       = userManager;
     _senderService     = senderService;
     _specialistService = specialistService;
     _clientService     = clientService;
 }
Beispiel #10
0
 public ChatHub(IMessageService messageService,
                ISpecialistService specialistService,
                IClientService clientService,
                IHubContext <MessageNotificationHub> hubContext)
 {
     this._messageService = messageService;
     _specialistService   = specialistService;
     _clientService       = clientService;
     _hubContext          = hubContext;
 }
 public ResponseController(ISpecialistService specialistService,
                           IMessageService messageService,
                           IClientService clientService,
                           UserManager <AppUser> userManager,
                           IOrderService orderService)
 {
     _specialistService = specialistService;
     _messageService    = messageService;
     _clientService     = clientService;
     _userManager       = userManager;
     _orderService      = orderService;
 }
Beispiel #12
0
 public DoctorService(IDoctorRepository doctorRepository,
                      IUnitOfWork unitOfWork,
                      ILogService logService,
                      IDoctorSpecialistRepository doctorSpecialistRepository,
                      ISpecialistService specialistService)
 {
     _doctorRepository           = doctorRepository;
     _unitOfWork                 = unitOfWork;
     _logService                 = logService;
     _doctorSpecialistRepository = doctorSpecialistRepository;
     _specialistService          = specialistService;
 }
Beispiel #13
0
 public SpecialistController(ISpecialistService specialistService, IClientService clientService, IOrderService orderService, LanguageService languageService,
                             LocationService locationService, ICategoryService categoryService, IMessageService messageService, UserManager <AppUser> userManager)
 {
     _specialistService = specialistService;
     _clientService     = clientService;
     _orderService      = orderService;
     _languageService   = languageService;
     _locationService   = locationService;
     _categoryService   = categoryService;
     _messageService    = messageService;
     _userManager       = userManager;
 }
Beispiel #14
0
 public ProfileController(
     UserManager <AppUser> userManager,
     ISpecialistService specialistService,
     IMeetingPointService meetingPointService,
     ICategoryService categoryService,
     LocationService locationService)
 {
     _userManager          = userManager;
     _specialistService    = specialistService;
     _meetingPointService  = meetingPointService;
     this._categoryService = categoryService;
     this._locationService = locationService;
 }
 public AuthController([FromServices]
                       IUserService userService,
                       ITokenManager tokenManager,
                       IUserSessionService userSessionService,
                       IProblemService problemService,
                       IUserWalletService userWalletService,
                       ISpecialistService specialistService)
 {
     UserService        = userService;
     TokenManager       = tokenManager;
     UserSessionService = userSessionService;
     ProblemService     = problemService;
     UserWalletService  = userWalletService;
     SpecialistService  = specialistService;
 }
 public ArticlesController([FromServices]
                           IArticleService articleService,
                           IArticleLikeService articleLikeService,
                           IArticleCommentService articleCommentService,
                           IArticlePublishService articlePublishService,
                           IUserService userService,
                           ISpecialistService specialistService,
                           IReviewService reviewService,
                           IFileService fileService)
 {
     ArticleService        = articleService;
     ArticleLikeService    = articleLikeService;
     ArticleCommentService = articleCommentService;
     ArticlePublishService = articlePublishService;
     UserService           = userService;
     SpecialistService     = specialistService;
     ReviewService         = reviewService;
     FileService           = fileService;
 }
Beispiel #17
0
 public OrderController(IOrderService orderService,
                        IQuestionService questionService,
                        IMessageService messageService,
                        IHubContext <NotificationHub> hubContext,
                        IClientService clientService,
                        ISpecialistService specialistService,
                        ICategoryService categoryService,
                        IAnswerService answerService,
                        UserManager <AppUser> userManager,
                        IReviewService reviewService)
 {
     _orderService      = orderService;
     _questionService   = questionService;
     _messageService    = messageService;
     _hubContext        = hubContext;
     _clientService     = clientService;
     _specialistService = specialistService;
     _categoryService   = categoryService;
     _answerService     = answerService;
     _userManager       = userManager;
     _reviewService     = reviewService;
 }
Beispiel #18
0
        public PatientController([FromServices]
                                 IUserService userService,
                                 IProblemService problemService,
                                 ISessionService sessionService,
                                 ISpecialistService specialistService,
                                 IReviewService reviewService,
                                 IUserWalletService userWalletService,
                                 IProblemImageService problemImageService,
                                 IProblemResourceService problemResourceService,
                                 IProblemResourceTaskService problemResourceTaskService,
                                 NotificationsMessageHandler notificationsService)
        {
            UserService                = userService;
            ProblemService             = problemService;
            SessionService             = sessionService;
            SpecialistService          = specialistService;
            ReviewService              = reviewService;
            UserWalletService          = userWalletService;
            ProblemImageService        = problemImageService;
            ProblemResourceService     = problemResourceService;
            ProblemResourceTaskService = problemResourceTaskService;

            NotificationsService = notificationsService;
        }
Beispiel #19
0
 public SpecialistsController(ISpecialistService specialistService, IMapper mapper)
 {
     _specialistService = specialistService;
     _mapper            = mapper;
 }
 public AppointmentController(ISpecialistService specialistservice, IDisponibilityService disponibilityservice, IAppointmentService appointmentservice)
 {
     specialistService    = specialistservice;
     disponibilityService = disponibilityservice;
     appointmentService   = appointmentservice;
 }
Beispiel #21
0
 public SettingsController(UserManager <AppUser> userManager, ISpecialistService specialistService)
 {
     _userManager       = userManager;
     _specialistService = specialistService;
 }
Beispiel #22
0
 public ServiceController(ICategoryService categoryService, ISpecialistService specialistService, LocationService locationService)
 {
     _categoryService   = categoryService;
     _specialistService = specialistService;
     _locationService   = locationService;
 }
Beispiel #23
0
 public SpecialistsController(ISpecialistService specialistService, IDoctorService doctorService, ISpecialistTypeService specialistTypeService)
 {
     _specialistService     = specialistService;
     _doctorService         = doctorService;
     _specialistTypeService = specialistTypeService;
 }
 public AssignmentService(IAsyncRepository <Assignment> repository, ISpecialistService specialistService, IAssignorService assignorService)
 {
     this.assignmentRepository = repository;
     this.specialistService    = specialistService;
     this.assignorService      = assignorService;
 }
Beispiel #25
0
 public DoctorsController(IDoctorService doctorService, ISpecialistService specialistService)
 {
     _doctorService     = doctorService;
     _specialistService = specialistService;
 }
 public SpecialistController(ISpecialistService specialistservice)
 {
     specialistService = specialistservice;
 }