Commit 2d6ebbe4 authored by 黄奎's avatar 黄奎

页面修改

parent 4e1e5818
using Edu.Repository.User;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Module.Customer
{
/// <summary>
/// 市场和课程顾问处理类对象
/// </summary>
public class MarketConsultantModule
{
/// <summary>
/// 学生仓储层对象
/// </summary>
private readonly RB_StudentRepository studentRepository = new RB_StudentRepository();
/// <summary>
/// 市场人员统计
/// </summary>
/// <returns></returns>
public object MarketStaticModule(string EmpIds,string StartTime,string EndTime)
{
object obj = new object();
var totalTotal =studentRepository.GetStudentClueRepository(EmpIds, StartTime, EndTime);
return obj;
}
/// <summary>
/// 课程顾问统计
/// </summary>
/// <returns></returns>
public object ConsultantStaticModule(string EmpIds, string StartTime, string EndTime)
{
object obj = new object();
return obj;
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment