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

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

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

            record.Should().NotBeNull();
        }