Пример #1
0
 /// <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;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NotificationRepository"/> class.
 /// </summary>
 /// <param name="context">
 /// The context.
 /// </param>
 public NotificationRepository(ShortStuffContext context)
     : base(context)
 {
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MessageRepository"/> class.
 /// </summary>
 /// <param name="context">
 /// The context.
 /// </param>
 public MessageRepository(ShortStuffContext context)
     : base(context)
 {
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TopicRepository"/> class.
 /// </summary>
 /// <param name="context">
 /// The context.
 /// </param>
 public TopicRepository(ShortStuffContext context)
     : base(context)
 {
 }
Пример #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UserRepository"/> class.
 /// </summary>
 /// <param name="context">
 /// The context.
 /// </param>
 public UserRepository(ShortStuffContext context)
     : base(context)
 {
 }
Пример #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EchoRepository"/> class.
 /// </summary>
 /// <param name="context">
 /// The context.
 /// </param>
 public EchoRepository(ShortStuffContext context)
     : base(context)
 {
 }