Example #1
0
        public void InitializeDb()
        {
            var config = new MapperConfiguration(cfg => { cfg.AddProfile <GarbProfile>(); cfg.CreateMap <IssueDto, IssueDto>(); });

            _mapper  = config.CreateMapper();
            _context = TestInitializer.GetSeededContext(_mapper);
        }
Example #2
0
        public void InitializeDb()
        {
            var config = new MapperConfiguration(cfg => { cfg.AddProfile <GarbProfile>(); });

            _mapper = config.CreateMapper();

            _context = TestInitializer.GetSeededContext(_mapper);

            _unitOfWork = new UnitOfWork(_context);
        }