Exemplo n.º 1
0
 public EmployeesController(IEmployeesService employeesService, IClientsService clientsService, IInteractionsService interactionsService)
 {
     _employeesService    = employeesService;
     _clientsService      = clientsService;
     _interactionsService = interactionsService;
 }
 public InteractionsController(IInteractionsService interactionsService)
 {
     _interactionsService = interactionsService;
 }