コード例 #1
0
 public MySqlTimeEntryRepository(TimeEntryContext context)
 {
     _context = context;
 }
コード例 #2
0
 public MySqlTimeEntryRepository(TimeEntryContext timeEntryContext)
 {
     this._timeEntryContext = timeEntryContext;
 }
コード例 #3
0
        public MySqlTimeEntryRepository(TimeEntryContext dbContext)
        {
            _dbContext = dbContext;

            _dbContext.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
        }
コード例 #4
0
 public MySqlTimeEntryRepository(TimeEntryContext timeEntryContext)
 {
     _tec = timeEntryContext;
 }
コード例 #5
0
 public MySqlTimeEntryRepository(TimeEntryContext _timeEntryContext)
 {
     timeEntryContext = _timeEntryContext;
 }