trait UServiceComponent {
  self: api[URepositoryComponent] =>
  protected val uService = new UService
  protected class UService {
    def getU(uName: String): Option[U] = uRepo.getU(uName) // STUB
  }
}