Example #1
0
 public GetCustomersResponse(ServiceStack.UsageExamples.svc.Customer[] Customers, ServiceStack.UsageExamples.svc.Properties Properties, ServiceStack.UsageExamples.svc.ResponseStatus ResponseStatus, int Version)
 {
     this.Customers      = Customers;
     this.Properties     = Properties;
     this.ResponseStatus = ResponseStatus;
     this.Version        = Version;
 }
Example #2
0
 public void StoreCustomer(ServiceStack.UsageExamples.svc.Customer Customer, ServiceStack.UsageExamples.svc.Properties Properties, int Version)
 {
     ServiceStack.UsageExamples.svc.StoreCustomer inValue = new ServiceStack.UsageExamples.svc.StoreCustomer();
     inValue.Customer   = Customer;
     inValue.Properties = Properties;
     inValue.Version    = Version;
     ((ServiceStack.UsageExamples.svc.IOneWay)(this)).StoreCustomer(inValue);
 }
Example #3
0
 public StoreCustomer(ServiceStack.UsageExamples.svc.Customer Customer, ServiceStack.UsageExamples.svc.Properties Properties, int Version)
 {
     this.Customer   = Customer;
     this.Properties = Properties;
     this.Version    = Version;
 }
Example #4
0
 public ServiceStack.UsageExamples.svc.Customer[] GetCustomers(ServiceStack.UsageExamples.svc.ArrayOfIntId CustomerIds, ref ServiceStack.UsageExamples.svc.Properties Properties, ref int Version, out ServiceStack.UsageExamples.svc.ResponseStatus ResponseStatus)
 {
     ServiceStack.UsageExamples.svc.GetCustomersRequest inValue = new ServiceStack.UsageExamples.svc.GetCustomersRequest();
     inValue.CustomerIds = CustomerIds;
     inValue.Properties  = Properties;
     inValue.Version     = Version;
     ServiceStack.UsageExamples.svc.GetCustomersResponse retVal = ((ServiceStack.UsageExamples.svc.ISyncReply)(this)).GetCustomers(inValue);
     Properties     = retVal.Properties;
     ResponseStatus = retVal.ResponseStatus;
     Version        = retVal.Version;
     return(retVal.Customers);
 }
Example #5
0
 public GetCustomersRequest(ServiceStack.UsageExamples.svc.ArrayOfIntId CustomerIds, ServiceStack.UsageExamples.svc.Properties Properties, int Version)
 {
     this.CustomerIds = CustomerIds;
     this.Properties  = Properties;
     this.Version     = Version;
 }