Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MutantService"/> class.
 /// </summary>
 /// <param name="dnaService">Service of DNA</param>
 /// <param name="dnaService">Service for Memory Cache</param>
 public MutantService(IDnaService dnaService, IMemoryCacheService memoryCacheService)
 {
     _dnaService         = dnaService;
     _memoryCacheService = memoryCacheService;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="StatsService"/> class.
 /// </summary>
 /// <param name="dnaService">Service of DNA</param>
 /// <param name="memoryCacheService">Service for Memory Cache</param>
 public StatsService(IDnaService dnaService, IMemoryCacheService memoryCacheService)
 {
     _dnaService         = dnaService;
     _memoryCacheService = memoryCacheService;
 }