Aliencube.WebJob.Host.Autofac.Functions.Functions C# (CSharp) Method

Functions() public method

Initializes a new instance of the Functions class.
public Functions ( Aliencube.WebJob.Host.Autofac.Helper helper ) : System
helper Aliencube.WebJob.Host.Autofac.Helper instance.
return System
        public Functions(Helper helper)
        {
            if (helper == null)
            {
                throw new ArgumentNullException(nameof(helper));
            }

            this._helper = helper;
        }