public Data() { dbContext = new VoyagerYContext(); busRepo = new BusRepo(dbContext); busTypeRepo = new BusTypeRepo(dbContext); var List = busTypeRepo.GetAll(); /////DEBUG İÇİN }
public BaseRepo(DbContext voyagerYContext) { db = (VoyagerYContext)voyagerYContext; }