using Rhea.Common;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.IBusiness;
using Tiger.Model;
namespace Tiger.Business
{
public partial class Biz
{
///
/// 客户
///
public partial class MqCustomer : ICustomer
{
///
/// 获取客户信息
///
///
public async Task>> GetCustomerInfo()
{
var res = new ApiAction>();
try
{
List result = await Db.Queryable().ToListAsync();
res.Data = result;
}
catch (Exception ex)
{
res.CatchExceptionWithLog(ex, "获取客户信息异常");
}
return res;
}
public async Task SaveImportCustomerInfo(DataTable dt)
{
throw new NotImplementedException();
}
}
}
}