Example #1
0
 public EFGenericRepository(bool createProxy = false)
 {
     _context = new CareerCloudContext(createProxy);
 }
 public ApplicantProfileRepository(bool createProxy = true)
 {
     context = new CareerCloudContext(createProxy);
 }
Example #3
0
        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;
 }