Esempio n. 1
0
 public MySqlTimeEntryRepository(TimeEntryContext context)
 {
     _context = context;
 }
Esempio n. 2
0
 public MySqlTimeEntryRepository(TimeEntryContext timeEntryContext)
 {
     this._timeEntryContext = timeEntryContext;
 }
Esempio n. 3
0
        public MySqlTimeEntryRepository(TimeEntryContext dbContext)
        {
            _dbContext = dbContext;

            _dbContext.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
        }
Esempio n. 4
0
 public MySqlTimeEntryRepository(TimeEntryContext timeEntryContext)
 {
     _tec = timeEntryContext;
 }
Esempio n. 5
0
 public MySqlTimeEntryRepository(TimeEntryContext _timeEntryContext)
 {
     timeEntryContext = _timeEntryContext;
 }