示例#1
0
 public AuthController(apiDbContext _db, IConfiguration _config, IMapper _mapper)
 {
     db     = _db;
     config = _config;
     mapper = _mapper;
 }
 public InitialHostDbBuilder(dotnet - apiDbContext context)
 {
     _context = context;
 }
 public UsersController(apiDbContext _db, IMapper _mapper)
 {
     db     = _db;
     mapper = _mapper;
 }
示例#4
0
 public DefaultLanguagesCreator(dotnet - apiDbContext context)
 {
     _context = context;
 }
示例#5
0
 public DefaultTenantBuilder(dotnet - apiDbContext context)
 {
     _context = context;
 }
 public MovieRepository(apiDbContext _db, IMapper _mapper)
 {
     db     = _db;
     movies = db.Movies.ToList();
     mapper = _mapper;
 }
 public DefaultSettingsCreator(dotnet - apiDbContext context)
 {
     _context = context;
 }
示例#8
0
 public HostRoleAndUserCreator(dotnet - apiDbContext context)
 {
     _context = context;
 }
 public MoviesController(apiDbContext _db, IMovieRepository _movieRepo, IMapper _mapper)
 {
     db        = _db;
     movieRepo = _movieRepo;
     mapper    = _mapper;
 }
 public DefaultEditionCreator(dotnet - apiDbContext context)
 {
     _context = context;
 }