示例#1
0
        public void InternetAccessType_To_CommonIPTVServiceV7InternetAccessType()
        {
            //*** Arrange ***
            var screenPopSubscriberType = new ScreenPopSubscriberType
            {
            };

            //*** Act ***
            var result = ObjectFactory.CreateInstanceAndMap <ScreenPopSubscriberType, Common.CallingNameV4.ScreenPopSubscriberType>(_commonMapper, screenPopSubscriberType);

            Assert.IsNotNull(result);
        }
示例#2
0
 public void AddScreenPop(ScreenPopSubscriberType screenPopSubscriberType, string npaNxx, string description)
 {
     _callingNameService.InsertScreenPopEntry(_loginInformation.LoginToken, npaNxx, description);
     _callingNameService.InsertScreenPopSubscriber(_loginInformation.LoginToken, screenPopSubscriberType.SubscriberPhoneNumberField, true);
 }