ServiceStack.Text.Tests.LicenseUseCase.LicenseUseCase C# (CSharp) Method

LicenseUseCase() public method

public LicenseUseCase ( LicenseFeature licenseFeature, QuotaType quotaType, int allowedLimit ) : System
licenseFeature LicenseFeature
quotaType QuotaType
allowedLimit int
return System
        public LicenseUseCase(LicenseFeature licenseFeature, QuotaType quotaType, int allowedLimit)
        {
            Feature = licenseFeature;
            QuotaType = quotaType;
            AllowedLimit = allowedLimit;
        }
LicenseUseCase