public ContactRepository(NOGContext context) : base(context) { Contact = _mongoContext.Db.GetCollection <Contact>("Contact"); }
public CollaboratorRepository(NOGContext context) : base(context) { Collaborator = _mongoContext.Db.GetCollection <Collaborator>("Collaborator"); }
public MenuRepository(NOGContext context) : base(context) { Menu = _mongoContext.Db.GetCollection <Menu>("Menu"); }
public PostgresRepository(NOGContext context) { Db = context; DbSet = Db.Set <TEntity>(); }
public HomeRepository(NOGContext context) : base(context) { Home = _mongoContext.Db.GetCollection <Home>("Home"); }
public WhoAreWeRepository(NOGContext context) : base(context) { WhoAreWe = _mongoContext.Db.GetCollection <WhoAreWe>("WhoAreWe"); }
public CollaboratorAddressRepository(NOGContext context) : base(context) { }
public UnitOfWork(NOGContext context) { _context = context; }
public MongoRepository(NOGContext mongoContext) { _mongoContext = mongoContext; }
public UserRepository(NOGContext context) : base(context) { }
public InstitutionRepository(NOGContext context) : base(context) { }
public VolunteerPhoneRepository(NOGContext context) : base(context) { }
public VolunteerRepository(NOGContext context) : base(context) { Volunteer = _mongoContext.Db.GetCollection <Volunteer>("Volunteer"); }
public LanguageRepository(NOGContext context) : base(context) { }
public LogoRepository(NOGContext context) : base(context) { Logo = _mongoContext.Db.GetCollection <Logo>("Logo"); }
public HowToHelpRepository(NOGContext context) : base(context) { HowToHelp = _mongoContext.Db.GetCollection <HowToHelp>("HowToHelp"); }
public CollaboratorPhoneRepository(NOGContext context) : base(context) { }
public VolunteerAddressRepository(NOGContext context) : base(context) { }