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

            Location entity = new Location();

            context.Set <Location>().Add(entity);
            await context.SaveChangesAsync();

            var record = await repository.All();

            record.Should().NotBeEmpty();
        }