Exemplo n.º 1
0
        public SeguradoTest()
        {
            _context = new ReplyContext(new DbContextOptionsBuilder <ReplyContext>().UseInMemoryDatabase(Guid.NewGuid().ToString()).Options);
            _context.Segurado.AddRange(SeguradoMock.Dados());
            _context.SaveChanges();

            _seguradoRepository         = new SeguradoRepository(_context);
            _seguradoApplicationService = new SeguradoApplicationService(_seguradoRepository);
            _valorAleatorio             = new Random();
        }
Exemplo n.º 2
0
        public void AddReply(Reply reply)
        {
            string commentName = _userContext.User.Where(u => u.ID == reply.UserId).FirstOrDefault()?.Name;

            reply.CommentName = commentName;
            reply.CreateTime  = DateTime.Now;
            reply.ReplyName   = reply.ReplyName;
            _replyContext.Reply.Add(reply);
            _replyContext.SaveChanges();
        }
Exemplo n.º 3
0
 public void Add(TEntity entity)
 {
     _entity.Add(entity);
     _context.SaveChanges();
 }