public MatchSummaryController(
     CricketContext context,
     UserManager <ApplicationUser> userManager, IMatchSummary matchSummary,
     IMapper mapper, IHostingEnvironment env, IHostingEnvironment hosting)
 {
     _context      = context;
     _userManager  = userManager;
     _mapper       = mapper;
     _matchSummary = matchSummary;
     _env          = env;
     _hosting      = hosting;
 }
示例#2
0
 public bool TryGetValue(DateTime key, out IMatchSummary value)
 {
     return _this.TryGetValue(key, out value);
 }
示例#3
0
 public void Add(DateTime key, IMatchSummary value)
 {
     _this.Add(key, value);
 }