public IEnumerable <Lending> GetLendingsBook(ObjectId bookId)
        {
            var filter = Builders <Lending> .Filter.Eq(x => x.BookId, bookId);

            var lendings = _database.FindMultipleByFilter(Lending.CollectionName, filter);

            return(lendings);
        }