Example #1
0
 public NotesBLL()
     : base()
 {
     _INotesDAL = new NotesDAL();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="NotesController" /> class.
 /// </summary>
 /// <param name="notesDAL">The notes dal.</param>
 public NotesController(INotesDAL notesDAL)
 {
     NotesDAL = notesDAL;
 }