Пример #1
0
        private string GetNotification(string typeNotifications)
        {
            switch (typeNotifications)
            {
            case "Entry":
                return(_human.EntryInToTheChat(Name));

            case "Exit":
                return(_human.OutOfTheChat(Name));

            default:
                return(null);
            }
        }