/// <summary> /// Initializes a new instance of the <see cref="RepositoryBase{TData,TDomain,TId}"/> class. /// </summary> /// <param name="context"> /// The context. /// </param> public RepositoryBase(ShortStuffContext context) { Context = context; }
/// <summary> /// Initializes a new instance of the <see cref="NotificationRepository"/> class. /// </summary> /// <param name="context"> /// The context. /// </param> public NotificationRepository(ShortStuffContext context) : base(context) { }
/// <summary> /// Initializes a new instance of the <see cref="MessageRepository"/> class. /// </summary> /// <param name="context"> /// The context. /// </param> public MessageRepository(ShortStuffContext context) : base(context) { }
/// <summary> /// Initializes a new instance of the <see cref="TopicRepository"/> class. /// </summary> /// <param name="context"> /// The context. /// </param> public TopicRepository(ShortStuffContext context) : base(context) { }
/// <summary> /// Initializes a new instance of the <see cref="UserRepository"/> class. /// </summary> /// <param name="context"> /// The context. /// </param> public UserRepository(ShortStuffContext context) : base(context) { }
/// <summary> /// Initializes a new instance of the <see cref="EchoRepository"/> class. /// </summary> /// <param name="context"> /// The context. /// </param> public EchoRepository(ShortStuffContext context) : base(context) { }