public TGC002JournalisationController(IJournalisationRepository repo, IAuthentificationRepository authRepo, IMapper mapper)
 {
     _repo     = repo;
     _authRepo = authRepo;
     _mapper   = mapper;
 }
Ejemplo n.º 2
0
 public TGA001AuthentificationController(IAuthentificationRepository repo, IMapper mapper, IConfiguration config)
 {
     _repo   = repo;
     _mapper = mapper;
     _config = config;
 }
 public TGC003SaisieEcrituresController(IGestionEcritureJournalRepository repo, IAuthentificationRepository authRepo, IMapper mapper)
 {
     _repo     = repo;
     _authRepo = authRepo;
     _mapper   = mapper;
 }
 public TGC001BilanController(IBilanRepository repo, IAuthentificationRepository authRepo, IMapper mapper)
 {
     _repo     = repo;
     _authRepo = authRepo;
     _mapper   = mapper;
 }
 public TGZ001AffichageController(IAffichageRepository repo, IAuthentificationRepository autoRepo, IMapper mapper)
 {
     _repo     = repo;
     _authRepo = autoRepo;
     _mapper   = mapper;
 }