Atomia.Web.Plugin.PublicOrder.Helpers.ResellerHelper.GetResellerId C# (CSharp) Метод

GetResellerId() публичный статический Метод

Gets the reseller id.
public static GetResellerId ( ) : System.Guid
Результат System.Guid
        public static Guid GetResellerId()
        {
            if (HttpContext.Current.Session["resellerAccountData"] != null)
            {
                return ((AccountData)HttpContext.Current.Session["resellerAccountData"]).Id;
            }

            throw new ApplicationException("Reseller not found.");
        }