Exemplo n.º 1
0
Arquivo: Shelf.cs Projeto: olcay/om
        public Star Star(string userId)
        {
            if (this.CreatedById != userId)
            {
                var notification = Notification.ShelfStarred(this);
                CreatedBy.Notify(notification);
            }

            return(new Star()
            {
                Shelf = this, UserId = userId
            });
        }