public UserSettingApiController(IContextService contextService, IUserSettingViewService userSettingViewService, IUserManagerViewService userManagerViewService, IMachineService machineService)
 {
     _contextService         = contextService;
     _userSettingViewService = userSettingViewService;
     _userManagerViewService = userManagerViewService;
     _machineService         = machineService;
 }
Exemplo n.º 2
0
 public UserManagerApiController(IContextService contextService, IUserManagerViewService userManagerViewService, ILoginServices loginServices)
 {
     _contextService         = contextService;
     _userManagerViewService = userManagerViewService;
     _loginServices          = loginServices;
 }
 public PlantManagerViewService(IPlantManagerService plantManagerService, IUserManagerService userManagerService, IUserManagerViewService userManagerViewService)
 {
     _plantManagerService    = plantManagerService;
     _userManagerService     = userManagerService;
     _userManagerViewService = userManagerViewService;
 }
Exemplo n.º 4
0
 public MaintenanceViewService(IMessageService messageService, IUserManagerViewService userManagerViewService)
 {
     _messageService         = messageService;
     _userManagerViewService = userManagerViewService;
 }