23 lines
486 B
C#
23 lines
486 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Data;
|
|||
|
|
using WMS.Model.Stock;
|
|||
|
|
using WMS.Model.Report;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IReport
|
|||
|
|
{
|
|||
|
|
public interface IRKReport
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetRKReportDT(RKReportModel model);
|
|||
|
|
DataTable GetRKReportDT2(string date1,string date2);
|
|||
|
|
}
|
|||
|
|
}
|