Exemple #1
0
 public PrecautionController(
     IPrecautionService PrecautionService,
     IUserPrecautionService userPrecautionService,
     UserManager <User> userManager)
 {
     _precautionService     = PrecautionService;
     _userPrecautionService = userPrecautionService;
     _userManager           = userManager;
 }
Exemple #2
0
 public PrecautionQAController(IPrecautionService service, IMapper mapper)
 {
     _service = service; _mapper = mapper;
 }