コード例 #1
0
ファイル: LableBL.cs プロジェクト: sonalkarle/FundooNotes
        public LableBL(ILableRL labelManagementRL, IDistributedCache distributedCache)
        {
            this.label = labelManagementRL;

            this.distributedCache = distributedCache;
            redis = new RedisCacheServiceBL(this.distributedCache);
        }
コード例 #2
0
 public CollabratorBL(IcollabratorRL icollabratorRL, IDistributedCache distributedCache)
 {
     this.icollabratorRL   = icollabratorRL;
     this.distributedCache = distributedCache;
     redis = new RedisCacheServiceBL(this.distributedCache);
 }
コード例 #3
0
 public NotesBL(INotesRL notesRL, IDistributedCache distributedCache)
 {
     this.notesRL          = notesRL;
     this.distributedCache = distributedCache;
     redis = new RedisCacheServiceBL(this.distributedCache);
 }