public UserRepository(XptoContext context) : base(context) { #if DEBUG context.Database.EnsureCreated(); #endif }
public RouteRepository(XptoContext context) : base(context) { }
public KnownRouteRepository(XptoContext context, IRouteRepository _routeRepository) : base(context) { routeRepository = _routeRepository; }
public Repository(XptoContext context) { _dbContext = context; _dbSet = _dbContext.Set <TEntity>(); }
public MapPointRepository(XptoContext context) : base(context) { }