Beispiel #1
0
        public List <KeyValuePair <int, string> > GetPhoneTypes(ServiceType serviceType)
        {
            GetPhoneTypesCommand getPhoneTypesCommand = new GetPhoneTypesCommand(serviceType);

            getPhoneTypesCommand.Execute();
            return(getPhoneTypesCommand.CommandResult);
        }
        public List <UserManagementSystem.Entities.PhoneType> GetPhoneTypes()
        {
            GetPhoneTypesCommand getPhoneTypesCommand = new GetPhoneTypesCommand();

            getPhoneTypesCommand.Execute();
            return(getPhoneTypesCommand.CommandResult);
        }
Beispiel #3
0
        public List <KeyValuePair <int, string> > GetPhoneTypes(CommunityType communityType)
        {
            GetPhoneTypesCommand getPhoneTypesCommand = new GetPhoneTypesCommand(communityType);

            getPhoneTypesCommand.Execute();
            return(getPhoneTypesCommand.CommandResult);
        }