protected BaseController(IOnlineLibraryDbData data)
 {
     this.Data = data;
 }
 public BookController(IOnlineLibraryDbData data, User userProfile) : base(data, userProfile)
 {
 }
 protected BaseController(IOnlineLibraryDbData data, User userProfile)
     : this(data)
 {
     this.UserProfile = userProfile;
 }