/// <summary>
 ///     Initializes a new instance of the <see cref="UserDalManager" /> class.
 /// </summary>
 public UserDalManager()
 {
     this.sqlDalManager = new SqlDalManager();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CategoryDalManager"/> class.
 /// </summary>
 public CategoryDalManager()
 {
     sqlDalManager = new SqlDalManager();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BookDalManager"/> class.
 /// </summary>
 public BookDalManager()
 {
     sqlDalManager = new SqlDalManager();
     categoryDalManager = new CategoryDalManager();
 }