Esempio n. 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;
 }
Esempio n. 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)
 {
 }
Esempio n. 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)
 {
 }
Esempio n. 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)
 {
 }
Esempio n. 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)
 {
 }
Esempio n. 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)
 {
 }