Пример #1
0
 public RegisterRepository(ApplicationDbContext context, UserManager <AppUser> userManager, ICustomSystemLog customSystemLog, IMapper mapper, IUserToolkitRepository userToolkitRepository)
 {
     _context               = context;
     _userManager           = userManager;
     _customSystemLog       = customSystemLog;
     _mapper                = mapper;
     _userToolkitRepository = userToolkitRepository;
 }
Пример #2
0
 public RegisterController(IEmailSender emailService, IViewRenderService viewRenderService, IRegisterRepository registerRepository, ICustomSystemLog customSystemLog, IUserToolkitRepository userToolkitRepository)
 {
     _emailService          = emailService;
     _viewRenderService     = viewRenderService;
     _registerRepository    = registerRepository;
     _customSystemLog       = customSystemLog;
     _userToolkitRepository = userToolkitRepository;
 }
Пример #3
0
 public AuthenticationRepository(
     ApplicationDbContext context, UserManager <AppUser> userManager, ICustomSystemLog customSystemLog,
     IMapper mapper, IOptions <AppIdentitySettings> identitySettings)
 {
     _context          = context;
     _userManager      = userManager;
     _customSystemLog  = customSystemLog;
     _mapper           = mapper;
     _identitySettings = identitySettings.Value;
 }
Пример #4
0
 public TypeEmergencyDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Пример #5
0
 public UserToolkitRepository(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     _context         = context;
     _customSystemLog = customSystemLog;
 }
Пример #6
0
 public AddressDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     _context         = context;
     _customSystemLog = customSystemLog;
 }
Пример #7
0
 public StateDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Пример #8
0
 public ProfileDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     _context         = context;
     _customSystemLog = customSystemLog;
 }
Пример #9
0
 public GpsTrackerDAO(MySQLContext mySQLContext, ICustomSystemLog customSystemLog, ApplicationDbContext DbContext)
 {
     _customSystemLog = customSystemLog;
     _mySQLContext    = mySQLContext;
     _DbContext       = DbContext;
 }
Пример #10
0
 public DevicesAgentsDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context     = context;
     _customSystemLog = customSystemLog;
 }
Пример #11
0
 public TypeIncidenceDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Пример #12
0
 public VehicleDeviceDAO(MySQLContext mySQLContext, ICustomSystemLog customSystemLog)
 {
     _mySQLContext    = mySQLContext;
     _customSystemLog = customSystemLog;
 }
Пример #13
0
 public SecurityAgentDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Пример #14
0
 public MedicalRecordDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Пример #15
0
 public MobileDeviceRegistrationTempDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }