27 lines
512 B
C#
27 lines
512 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace Weee.Service.ExcelImportExport
|
|||
|
{
|
|||
|
public class YearlyElectricExcelImExService : ExcelImportExportServiceBase
|
|||
|
{
|
|||
|
public YearlyElectricExcelImExService() : base()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
public string Import()
|
|||
|
{
|
|||
|
string ret = "";
|
|||
|
|
|||
|
return ret;
|
|||
|
}
|
|||
|
public string Export()
|
|||
|
{
|
|||
|
string ret = "";
|
|||
|
|
|||
|
return ret;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|