public void Create(BusStop busStop)
        {
            try
            {
                var mapBusStop = AutoMapper.Mapper.Map
                    <Data.Entities.BusStop>(busStop);

                _busStopRepository.Add(mapBusStop);

                _unitOfWork.Commit();
            }
            catch (Exception exception)
            {
                throw new FaultException(exception.Message);
            }
        }
        public void Update(BusStop busStop)
        {
            try
            {
                var actualBusStop = _busStopRepository
                    .FindBy(b => b.Id == busStop.Id)
                    .First();

                actualBusStop.Name = busStop.Name;
                actualBusStop.Street = busStop.Street;
                actualBusStop.BusStopTypeId = busStop.BusStopTypeId;

                _unitOfWork.Commit();
            }
            catch (Exception exception)
            {
                throw new FaultException(exception.Message);
            }
        }