Ejemplo n.º 1
0
        public void AddSms(MobileAccount smsAchiever)
        {
            this.Rating = this.Rating + 0.5;
            var smsInfo = new MobileInfo(smsAchiever.uniqueNumber);

            this.SmsList.Add(smsInfo);
        }
Ejemplo n.º 2
0
        public void AddCall(MobileAccount calledNumber)
        {
            this.Rating++;
            var callInfo = new MobileInfo(calledNumber.uniqueNumber);

            this.CallsList.Add(callInfo);
        }