public OfficeLocation[] GetAll()
 {
     return(_officeLocationRepository.GetAll());
 }
        public void ShouldReturnOfficeLocations()
        {
            var officeLocations = _officeLocationRepository.GetAll();

            officeLocations.Should().NotBeNull();
        }