예제 #1
0
 public GetContractsListQueryHandler(IAppDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #2
0
 public void Setup()
 {
     _testDbContext = TestDbContext.Instance;
     _testProduct   = TestCommon.TestProduct1;
     TestDbContext.ClearData();
 }
예제 #3
0
 public Handler(IAppDbContext context, IHttpContextAccessor httpContextAccessor)
 {
     _context             = context;
     _httpContextAccessor = httpContextAccessor;
 }
 public SampleDataSeeder(IAppDbContext context)
 {
     _context = context;
 }
예제 #5
0
 public DataSeeder(IAppDbContext db, IRandomGenerator randomGenerator, UserManager<User> userManager)
 {
     this.Db = db;
     this.RandomGenerator = randomGenerator;
     this.UserManager = userManager;
 }
예제 #6
0
 public ReservationService(IAppDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #7
0
 public DeleteCommentCase(IAppDbContext context)
 {
     _context = context;
 }
예제 #8
0
 public AssignmentRepository(IAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #9
0
 public ImageService(IAppDbContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
예제 #10
0
 public CommunicationRequestJobQueries(IAppDbContext context, IOptionsSnapshot <RootConfigurations> rootConfiguration)
 {
     _context = context;
 }
 public CreateInputDataCommandHandler(IAppDbContext context)
 {
     _context = context;
 }
예제 #12
0
 public ChapterService(IAppDbContext appDbContext) : base(appDbContext)
 {
 }
 public GetHardwateDetailQueryHandler(IAppDbContext context, IMapper mapper, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _mapper      = mapper;
     _userManager = userManager;
 }
예제 #14
0
 public RejectPracticeCase(IAppDbContext context, IMailClient mailClient, ITemplateCreator templateCreator)
 {
     _context         = context;
     _mailClient      = mailClient;
     _templateCreator = templateCreator;
 }
예제 #15
0
 public CommonCodeRepo(IAppDbContext db)
 {
     this.db = db;
 }
예제 #16
0
 public HomeController(IMapper mapper, IAppDbContext db)
 {
     this.Mapper = mapper;
     this.Db = db;
 }
예제 #17
0
 public PatientRepository(IAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public FailureReportRepository(IAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #19
0
 public GetEmpresaQueryDetailHandler(IAppDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #20
0
 public RepositoryBase(IAppDbContext dbContext)
 {
     this._dbContext = dbContext;
 }
예제 #21
0
 public JwtRepo(IAppDbContext context)
 {
     _context = context;
 }
예제 #22
0
 public Handler(ICache cache, IAppDbContext context)
 {
     _context = context;
     _cache   = cache;
 }
예제 #23
0
 public GetFreeTermsQueryHandler(IAppDbContext context, IReservationService reservationService, IMapper mapper)
 {
     _mapper             = mapper;
     _context            = context;
     _reservationService = reservationService;
 }
예제 #24
0
 public GetUsersCase(IAppDbContext context, IMapper mapper, IHttpContextAccessor httpContextAccessor)
 {
     _context             = context;
     _mapper              = mapper;
     _httpContextAccessor = httpContextAccessor;
 }
예제 #25
0
 public NegotiationCommands(IAppDbContext context)
 {
     _context = context;
 }
 public RemoveHairSalonFromFavouritesCommandHandler(IAppDbContext context, ICurrentUserService currentUserService)
 {
     _context            = context;
     _currentUserService = currentUserService;
 }
예제 #27
0
 public CourseService(IAppDbContext db, ILogger <CourseService> logger)
 {
     this.db     = db;
     this.logger = logger;
 }
예제 #28
0
 public AppUserStore(IAppDbContext context) : base(context as AppDbContext)
 {
 }
예제 #29
0
 public Handler(IAppDbContext db)
 {
     this.db = db;
 }
예제 #30
0
 public ContractQueries(IAppDbContext appDbContext)
 {
     _dbContext = appDbContext;
 }
예제 #31
0
 public CreateProductCategoryCommandHandler(IAppDbContext context)
 {
     _context = context;
 }
예제 #32
0
 public Handler(IAppDbContext context) => _context = context;
예제 #33
0
 public CategoryCreatorValidator(IAppDbContext context)
 {
     this.context = context;
 }
예제 #34
0
 public AccountRepository(IAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #35
0
 public EffectRepository(IAppDbContext context)
 {
     _context = context;
 }
 public IdentityRepository(IAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #37
0
 public GetServicesQueryHandler(IAppDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #38
0
 public AddressRepository(IAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #39
0
 public ApproveReservationCommandHandler(IAppDbContext context, IIdentityService identityService)
 {
     _context         = context;
     _identityService = identityService;
 }
 public FailureTypeRepository(IAppDbContext ctx)
 {
     _dbContext = ctx;
 }
예제 #41
-1
 public TaskService(IAppDbContext db)
 {
     this.db = db;
 }