示例#1
0
 public LeagueService(IMflApi api, IMapper mapper, IGlobalMflApi globalApi, DeadCapTrackerContext context)
 {
     _api       = api;
     _mapper    = mapper;
     _globalApi = globalApi;
     _context   = context;
 }
示例#2
0
 public MflTranslationService(IMflApi mfl, IGlobalMflApi globalMflApi, IRumorService rumor)
 {
     _mfl          = mfl;
     _globalMflApi = globalMflApi;
     _owners       = Utils.owners;
     _memberIds    = Utils.memberIds;
     _thisYear     = Utils.ThisYear;
 }
示例#3
0
 public GroupMeRequestRequestService(IMflTranslationService mflTranslationService, IDataSetHelperService dataHelper, IGroupMeApi gmApi, IMflApi mfl, IGlobalMflApi globalMflApi, ILeagueService leagueService, IRumorService rumor, IInsultApi insult)
 {
     _mflTranslationService = mflTranslationService;
     _dataHelper            = dataHelper;
     _gmApi         = gmApi;
     _mfl           = mfl;
     _globalMflApi  = globalMflApi;
     _leagueService = leagueService;
     _rumor         = rumor;
     _insult        = insult;
     _owners        = Utils.owners;
     _memberIds     = Utils.memberIds;
     _thisYear      = Utils.ThisYear;
 }