示例#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;
 }