Beispiel #1
0
        public List <DomainInfo> GetHostingDomainsAllDomainDto(int hostingId, bool?tempDomain)
        {
            var req = new ReqGetHostingDomainsAllDomain()
            {
                HostingId = hostingId, TempDomain = tempDomain
            };

            return(this.Call <List <DomainInfo>, ReqGetHostingDomainsAllDomain>(req, "GetHostingDomainsAllDomainDto"));
        }
Beispiel #2
0
        public List <MemberProductDomainsInfo> GetHostingDomainsAll(int hostingId, bool?tempDomain = false)
        {
            var req = new ReqGetHostingDomainsAllDomain()
            {
                HostingId = hostingId, TempDomain = tempDomain
            };

            return(this.Call <List <MemberProductDomainsInfo>, ReqGetHostingDomainsAllDomain>(req, "GetHostingDomainsAll"));
        }