示例#1
0
 public AuthController(SvDbContext context, IAuth repo, IMapper mapper, IConfiguration config)
 {
     _config  = config;
     _mapper  = mapper;
     _context = context;
     _repo    = repo;
 }
示例#2
0
        public ProductController(SvDbContext context, IMapper mapper, IProduct repo)
        {
            _repo = repo;

            _mapper  = mapper;
            _context = context;
        }
示例#3
0
文件: Auth.cs 项目: Acengen/SportV
 public Auth(SvDbContext context)
 {
     _context = context;
 }
示例#4
0
文件: FavRepo.cs 项目: Acengen/SportV
 public FavRepo(SvDbContext context)
 {
     _context = context;
 }
示例#5
0
 public ProductRepo(SvDbContext context)
 {
     _context = context;
 }
示例#6
0
 public UserController(SvDbContext context, IMapper mapper, IFav repo)
 {
     _repo    = repo;
     _mapper  = mapper;
     _context = context;
 }