ServiceStack.WebHost.Endpoints.Tests.TestBase.TestBase C# (CSharp) Method

TestBase() protected method

protected TestBase ( ) : System
return System
        protected TestBase()
        {
            this.ReplyOperations = new[] { typeof(GetCustomer), typeof(GetCustomers) }.ToList();
            this.OneWayOperations = new[] { typeof(StoreCustomer) }.ToList();
            this.AllOperations = new[] { typeof(GetCustomerResponse), typeof(GetCustomersResponse) }.ToList();
            this.AllOperations.AddRange(ReplyOperations);
            this.AllOperations.AddRange(OneWayOperations);
        }
TestBase