예제 #1
0
 public UserProfileRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }
예제 #2
0
 public SampleRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }
예제 #3
0
 public UserTaskRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }
예제 #4
0
 public void InitialSetup()
 {
     // create a new DbConnection using Effort
     _connection = CreateConnection();
     _context    = CreateContext(_connection);
 }
예제 #5
0
 private SampleRepository CreateRepository(HIMSDbContext context)
 => new SampleRepository(context);
예제 #6
0
 public TaskTrackRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }
예제 #7
0
 public ProcedureManager(string connectionString)
 {
     _himsDbContext = new HIMSDbContext(connectionString);
 }
예제 #8
0
 public vUserProgressRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }
예제 #9
0
 public TaskStateRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }
예제 #10
0
 public EFUnitOfWork(string connectionString)
 {
     this._himsDbContext = new HIMSDbContext(connectionString);
 }
예제 #11
0
 public DirectionRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }
예제 #12
0
 public vUserTrackRepository(HIMSDbContext himsDbContext)
 {
     _himsDbContext = himsDbContext;
 }