Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NotesBL"/> class.
 /// </summary>
 /// <param name="notes">The notes.</param>
 public NotesBL(INotesRL notes)
 {
     this.notes = notes;
 }
Example #2
0
 public NotesBL(INotesRL notesRL, IDistributedCache distributedCache)
 {
     this.notesRL          = notesRL;
     this.distributedCache = distributedCache;
     redis = new RedisCacheServiceBL(this.distributedCache);
 }
 public NotesBL(INotesRL _noteRL)
 {
     this.noteRL = _noteRL;
 }