Ejemplo n.º 1
0
 public CallCenterController(
     ICallCenterService callCenterService,
     IHubContext <CallCenterHub> hubContext
     )
 {
     _hubContext        = hubContext;
     _callCenterService = callCenterService;
 }
Ejemplo n.º 2
0
 public EmployeesModel(ICallCenterService callCenterServiceClient)
 {
     _callCenterServiceClient = callCenterServiceClient;
 }
Ejemplo n.º 3
0
 public CallCenterController(ILogger <CallCenterController> logger, IHttpContextAccessor iHttpContextAccessor, ICallCenterService iCallCenterService)
 {
     _logger = logger;
     _httpContextAccessor = iHttpContextAccessor;
     _iCallCenterService  = iCallCenterService;
 }
Ejemplo n.º 4
0
 public CallCenterController(ICallCenterService callCenterService)
 {
     this._callCenterService = callCenterService;
 }
 public CallCenterController(ICallCenterService callCenter)
 {
     _callCenter = callCenter;
 }
Ejemplo n.º 6
0
 public HomeController(ICallCenterService service)
 {
     this.service = service;
 }
Ejemplo n.º 7
0
 public CallCenterHub(
     ICallCenterService callCenterService
     )
 {
     _callCenterService = callCenterService;
 }