Example #1
0
 public KontokorrentController(IKontokorrentsService kontokorrentsService, ITokenService tokenService,
                               IBezahlungenService bezahlungenService)
 {
     this.kontokorrentsService = kontokorrentsService;
     this.tokenService         = tokenService;
     this.bezahlungenService   = bezahlungenService;
 }
 public AktionenService(KontokorrentV2Context kontokorrentV2Context, IKontokorrentsService kontokorrentsService)
 {
     this.kontokorrentV2Context = kontokorrentV2Context;
     this.kontokorrentsService  = kontokorrentsService;
 }
 public KontokorrentsController(IKontokorrentsService kontokorrentsService)
 {
     _kontokorrentsService = kontokorrentsService;
 }
 public BenutzerService(KontokorrentV2Context kontokorrentContext, IKontokorrentsService kontokorrentsService)
 {
     _kontokorrentContext  = kontokorrentContext;
     _kontokorrentsService = kontokorrentsService;
 }
 public TokenController(IKontokorrentsService repository, ITokenService tokenService)
 {
     this.repository   = repository;
     this.tokenService = tokenService;
 }