/// <summary> /// Initializes a new instance of the <see cref="ConversationRepository"/> class. /// </summary> /// <param name="context">The timesheet context.</param> public ConversationRepository(TimesheetContext context) : base(context) { }
/// <summary> /// Initializes a new instance of the <see cref="ProjectRepository"/> class. /// </summary> /// <param name="context">The timesheet context.</param> public ProjectRepository(TimesheetContext context) : base(context) { }
/// <summary> /// Initializes a new instance of the <see cref="BaseRepository{T}"/> class. /// </summary> /// <param name="context">The Entity framework database context class to work with timesheet entities.</param> protected BaseRepository(TimesheetContext context) { this.context = context; }
/// <summary> /// Initializes a new instance of the <see cref="MemberRepository"/> class. /// </summary> /// <param name="context">The timesheet context.</param> public MemberRepository(TimesheetContext context) : base(context) { }
/// <summary> /// Initializes a new instance of the <see cref="RepositoryAccessors"/> class. /// </summary> /// <param name="context">The timesheet context.</param> public RepositoryAccessors(TimesheetContext context) { this.context = context; }
/// <summary> /// Initializes a new instance of the <see cref="TaskRepository"/> class. /// </summary> /// <param name="context">The timesheet context.</param> public TaskRepository(TimesheetContext context) : base(context) { }