예제 #1
0
 public NotesManagementBL(INotesManagementRL notesManagementRL, IDistributedCache distributedCache)
 {
     NotesManagementRL     = notesManagementRL;
     this.distributedCache = distributedCache;
     redis = new RedisCacheServiceBL(this.distributedCache);
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LabelManagementBL"/> class.
 /// </summary>
 /// <param name="labelManagementRL">The label management rl.</param>
 public LabelManagementBL(ILabelManagementRL labelManagementRL, IDistributedCache distributedCache)
 {
     this.labelManagementRL = labelManagementRL;
     this.distributedCache  = distributedCache;
     redis = new RedisCacheServiceBL(this.distributedCache);
 }