예제 #1
0
 public static StudentsRepository GetInstance(ErpSerwisDbContext context)
 {
     return(new StudentsRepository(context));
 }
예제 #2
0
 public StudentsRepository(ErpSerwisDbContext context)
 {
     _context = context;
 }
예제 #3
0
 public StudentsRepository()
 {
     _context = new ErpSerwisDbContext();
 }
예제 #4
0
 public static AppSettingsRepository GetInstance(ErpSerwisDbContext context)
 {
     return(new AppSettingsRepository(context));
 }
예제 #5
0
 public AppSettingsRepository(ErpSerwisDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public AppSettingsRepository()
 {
     _context = new ErpSerwisDbContext();
 }