Ejemplo n.º 1
0
    public bool CheckHated(TasteCustomer taste)
    {
        if (TasteHated.Contains(taste))
        {
            return(true);
        }

        return(false);
    }
Ejemplo n.º 2
0
    public bool CheckLikeable(TasteCustomer taste)
    {
        if (TasteLiked.Contains(taste))
        {
            return(true);
        }

        return(false);
    }
 private void OnEnable()
 {
     _myTasteCustomer = base.target as TasteCustomer;
 }