Implementations:
public class BusLineService : ServiceBase, IBusLineService
{
public IStopService StopService { get; set; }
```
public BusLineService(IBusLineRepository repository)
…
I'm using the List pattern to switch bet ween different sets of data.
In the Activities (< SherlockFragmentActivity) onCreate method, I'm creating the Menu like this:
``` java
@Override
publ…