AngularAzureSearch.WebAPI.Entities.EntityBase.EntityBase C# (CSharp) Method

EntityBase() public method

All root entities inherit this base class.
public EntityBase ( string docType, string Type ) : Newtonsoft.Json
docType string The name of the type of entity (lowercase).
Type string The type of the document.
return Newtonsoft.Json
        public EntityBase(string docType, string Type)
        {
            this._docType = docType;
            this._type = Type;
        }
EntityBase