public DbModelRepository(T entity) { _context = new CyberContext(); _context.Configuration.LazyLoadingEnabled = false; //_idCharacter = idCharactere; //Mapper(entity); }
public DbModelRepository(T entity, int idCharactere, CyberContext context) { _context = context; _context.Configuration.LazyLoadingEnabled = false; _idCharacter = idCharactere; //Mapper(entity); }
public DbGradeRepository() { _context = new CyberContext(); _context.Configuration.LazyLoadingEnabled = false; }