コード例 #1
0
 // Constructor
 public FilialesRepository(Gestion_Responsable_DBContext context)
 {
     _context = context;
 }
コード例 #2
0
 public FilialeController(IFilialeService filialeService, IGenericRepositoryResponsable <Filiale> db, Gestion_Responsable_DBContext responsableContext)
 {
     _responsableContext = responsableContext;
     _filialeService     = filialeService;
     _db = db;
 }
コード例 #3
0
 // Constructor
 public UtilisateursRepository(Gestion_Responsable_DBContext context)
 {
     _context = context;
 }
 public GenericRepositoryResponsable(Gestion_Responsable_DBContext context)
 {
     this._context = context;
     table         = _context.Set <T>();
 }