/// <summary> /// Initializes a new instance of the <see cref="EasyDataApiHandler"/> class. /// </summary> /// <param name="manager">The instance of EasyDataManager that incapsulates all business logic of EasyData API.</param> /// <param name="options"> Some options that affects handler's behavior.</param> /// <param name="httpContext">The current HttpContext.</param> public EasyDataApiHandler(EasyDataManager manager, EasyDataOptions options, HttpContext httpContext) { Manager = manager; Options = options; HttpContext = httpContext; }