public async void Create()
        {
            Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = VoteRepositoryMoc.GetContext();
            var repository = new VoteRepository(loggerMoc.Object, context);

            var entity = new Vote();
            await repository.Create(entity);

            var record = await context.Set <Vote>().FirstOrDefaultAsync();

            record.Should().NotBeNull();
        }
        public async void Create()
        {
            Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = VoteRepositoryMoc.GetContext();
            var repository = new VoteRepository(loggerMoc.Object, context);

            var entity = new Vote();

            entity.SetProperties(default(int), 2, DateTime.Parse("1/1/1988 12:00:00 AM"), 1, 1, 1);
            await repository.Create(entity);

            var records = await context.Set <Vote>().ToListAsync();

            records.Count.Should().Be(2);
        }