public EventCrudQueries(IWeddingDatabase db)
 {
     this._db = db;
 }
 public UserQueries(IWeddingDatabase db)
 {
     _db = db;
 }
 public RsvpCommands(IWeddingDatabase db)
 {
     _db = db;
 }
Example #4
0
 public VenueQueries(IWeddingDatabase db) : base(db)
 {
 }
 public GuestQueries(IWeddingDatabase db) : base(db)
 {
 }
Example #6
0
 public LoginCommands(IWeddingDatabase db)
 {
     _db = db;
 }
Example #7
0
 public EventCommands(IWeddingDatabase db)
 {
     _db = db;
 }
Example #8
0
 public GuestMessageBoardQueries(IWeddingDatabase db)
 {
     _db = db;
 }
Example #9
0
 public MessageBoardQueries(IWeddingDatabase db) : base(db)
 {
 }
 public CrudCommands(IWeddingDatabase db)
 {
     _db = db;
 }
Example #11
0
 public GuestCommands(IWeddingDatabase db) : base(db)
 {
 }
Example #12
0
 public MessageBoardCommands(IWeddingDatabase db) : base(db)
 {
 }
 public LoginQueries(IWeddingDatabase db, ILogger log)
 {
     _db  = db;
     _log = log;
 }
 public VenueCommands(IWeddingDatabase db) : base(db)
 {
 }
 public GuestEventDetailsQueries(IWeddingDatabase db)
 {
     _db = db;
 }
 public RsvpQueries(IWeddingDatabase db)
 {
     _db = db;
 }
Example #17
0
 public WeddingQueries(IWeddingDatabase db) : base(db)
 {
 }
 public WeddingCommands(IWeddingDatabase db) : base(db)
 {
 }
Example #19
0
 public GuestMessageBoardCommands(IWeddingDatabase db)
 {
     _db = db;
 }