29 строки
1.1 KiB
C#
29 строки
1.1 KiB
C#
#region Copyright Syncfusion Inc. 2001-2019.
|
|
// Copyright Syncfusion Inc. 2001-2019. All rights reserved.
|
|
// Use of this code is subject to the terms of our license.
|
|
// A copy of the current license can be obtained at any time by e-mailing
|
|
// licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
// applicable laws.
|
|
#endregion
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
|
|
namespace MvcSampleBrowser
|
|
{
|
|
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IPivotChartService" in both code and config file together.
|
|
[ServiceContract]
|
|
public interface IRelationalChartService
|
|
{
|
|
[OperationContract]
|
|
Dictionary<string, object> InitializeChart(string action, string currentReport, string customObject);
|
|
[OperationContract]
|
|
Dictionary<string, object> DrillChart(string action, string drilledSeries);
|
|
[OperationContract]
|
|
void Export(System.IO.Stream stream);
|
|
}
|
|
}
|