public ConferencesModel(IConferanceService conferanceService)
 {
     this.conferanceService = conferanceService;
 }
Exemple #2
0
 public ConferenceController(IConferanceService conferanceService, IMemoryCache memoryCache)
 {
     this.conferanceService = conferanceService;
     this.memoryCache       = memoryCache;
 }