コード例 #1
0
 public GroupController(
     IUnitOfWorkAsync unitOfWork,
     IStoredProcedureService storedProcedureService,
     IGroupService groupService)
 {
     _unitOfWork = unitOfWork;
     _groupService = groupService;
     _storedProcedureService = storedProcedureService;
 }
コード例 #2
0
 public AccountService(
     IStoredProcedureService storedProcedure,
     RandomMaker randomMaker,
     Cryptograph cryptograph,
     IAccountProfileService accountProfileService,
     IAccountDeviceService accountDeviceService,
     JwtHandler jwtHandler)
 {
     _storedProcedure       = storedProcedure;
     _randomMaker           = randomMaker;
     _cryptograph           = cryptograph;
     _accountProfileService = accountProfileService;
     _accountDeviceService  = accountDeviceService;
     _jwtHandler            = jwtHandler;
 }
コード例 #3
0
 public CountryController(ICountryService countryService, IStoredProcedureService storedProcedureService)
 {
     this.countryService         = countryService;
     this.storedProcedureService = storedProcedureService;
 }
コード例 #4
0
 public AccountDeviceService(
     IStoredProcedureService storedProcedure)
 {
     _storedProcedure = storedProcedure;
 }
コード例 #5
0
 public ClipboardService(
     IStoredProcedureService storedProcedure)
 {
     _storedProcedure = storedProcedure;
 }
コード例 #6
0
 public HomeController(IStoredProcedureService iStoredProcedureService)
 {
     _iStoredProcedureService = iStoredProcedureService;
 }