public TwitterAccountRepository(BackUpSystemDbContext dbContext) : base(dbContext) { }
public UserRepository(BackUpSystemDbContext dbContext) : base(dbContext) { }
public UnitOfWork(BackUpSystemDbContext dbContext) { Guard.WhenArgument(dbContext, "DbContext").IsNull().Throw(); this.dbContext = dbContext; }
/// <summary> //// Initializes a new instance of the <see cref="Repository{TEntity}"/> class heir. /// </summary> //// <param name="context">Context that provide connection to the database.</param> public Repository(BackUpSystemDbContext dbContext) { Guard.WhenArgument(dbContext, "DbContext").IsNull().Throw(); this.dbContext = dbContext; }
public TweetRepository(BackUpSystemDbContext dbContext) : base(dbContext) { }