Esempio n. 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;
 }
Esempio n. 2
0
 public RegisterController(IEmailSender emailService, IViewRenderService viewRenderService, IRegisterRepository registerRepository, ICustomSystemLog customSystemLog, IUserToolkitRepository userToolkitRepository)
 {
     _emailService          = emailService;
     _viewRenderService     = viewRenderService;
     _registerRepository    = registerRepository;
     _customSystemLog       = customSystemLog;
     _userToolkitRepository = userToolkitRepository;
 }
Esempio n. 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;
 }
Esempio n. 4
0
 public TypeEmergencyDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Esempio n. 5
0
 public UserToolkitRepository(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     _context         = context;
     _customSystemLog = customSystemLog;
 }
Esempio n. 6
0
 public AddressDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     _context         = context;
     _customSystemLog = customSystemLog;
 }
Esempio n. 7
0
 public StateDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Esempio n. 8
0
 public ProfileDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     _context         = context;
     _customSystemLog = customSystemLog;
 }
Esempio n. 9
0
 public GpsTrackerDAO(MySQLContext mySQLContext, ICustomSystemLog customSystemLog, ApplicationDbContext DbContext)
 {
     _customSystemLog = customSystemLog;
     _mySQLContext    = mySQLContext;
     _DbContext       = DbContext;
 }
Esempio n. 10
0
 public DevicesAgentsDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context     = context;
     _customSystemLog = customSystemLog;
 }
Esempio n. 11
0
 public TypeIncidenceDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Esempio n. 12
0
 public VehicleDeviceDAO(MySQLContext mySQLContext, ICustomSystemLog customSystemLog)
 {
     _mySQLContext    = mySQLContext;
     _customSystemLog = customSystemLog;
 }
Esempio n. 13
0
 public SecurityAgentDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Esempio n. 14
0
 public MedicalRecordDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }
Esempio n. 15
0
 public MobileDeviceRegistrationTempDAO(ApplicationDbContext context, ICustomSystemLog customSystemLog)
 {
     this.context          = context;
     this._customSystemLog = customSystemLog;
 }