Ejemplo n.º 1
0
 public CommentairesController(IWebHostEnvironment environment, IDepotCommentaires p_depotCommentaires, IDepotSolution p_depotSolution, IDepotTravail p_depotTravail)
 {
     this.hostingEnvironment  = environment;
     this.m_depotCommentaires = p_depotCommentaires;
     this.m_depotSolution     = p_depotSolution;
     this.m_depotTravail      = p_depotTravail;
 }
Ejemplo n.º 2
0
 public EtudiantController(IWebHostEnvironment environment, IDepotInscriptions p_depotInscription, IDepotTravail p_depotTravail, IDepotCorrections p_depotCorrections, IDepotSolution p_depotsolution)
 {
     this.hostingEnvironment = environment;
     this.m_depotInscription = p_depotInscription;
     this.m_depotTravail     = p_depotTravail;
     this.m_depotCorrections = p_depotCorrections;
     this.m_depotSolution    = p_depotsolution;
 }
Ejemplo n.º 3
0
 public ProfesseurController(IWebHostEnvironment environment, IDepotTravail p_depotTravail, IDepotSolution p_depotSolution, IDepotInscriptions p_depotInscription, IDepotCorrections p_depotCorrections)
 {
     this.hostingEnvironment = environment;
     this.m_depotTravail     = p_depotTravail;
     this.m_depotSolution    = p_depotSolution;
     this.m_depotInscription = p_depotInscription;
     this.m_depotCorrections = p_depotCorrections;
 }