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

            getPhoneTypesCommand.Execute();
            return(getPhoneTypesCommand.CommandResult);
        }
コード例 #2
0
        public List <UserManagementSystem.Entities.PhoneType> GetPhoneTypes()
        {
            GetPhoneTypesCommand getPhoneTypesCommand = new GetPhoneTypesCommand();

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

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