public EFGenericRepository(bool createProxy = false) { _context = new CareerCloudContext(createProxy); }
public ApplicantProfileRepository(bool createProxy = true) { context = new CareerCloudContext(createProxy); }
public EFGenericRepository() { DbContextOptions <CareerCloudContext> options = new DbContextOptions <CareerCloudContext>(); _context = new CareerCloudContext(options); }
public EFGenericRepository() { _context = new CareerCloudContext(); }
public EFGenericRepository(bool createProxy = true) { _context = new CareerCloudContext(createProxy); // = System.Diagnostics.Debug.WriteLine; // _context.Log = System.Console.Out; }