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

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