19 lines
470 B
C#
19 lines
470 B
C#
using MasaBlazorApp3.DataAccess.Dao;
|
|
using MasaBlazorApp3.Pojo;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MasaBlazorApp3.DataAccess.Impl
|
|
{
|
|
public class ReportDataDao : IReportDataDao
|
|
{
|
|
public Task<List<ChannelStock>> AccountBookExport(DateTime? startDate, DateTime? endDate,string drugId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|