Ejemplo n.º 1
0
        public bool CheckBook(Guid bookId)
        {
            var holders       = _holdersService.GetAllHoldersBook(bookId);
            var notifications = _notificationService.GetList(bookId);

            if (holders.Count != 0 || notifications.Count != 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }