Exemplo n.º 1
0
 public ActionResult LeadsClosed(LeadClosedReportFilter model)
 {
     model.LeadStatusId = 3; //Lead Closed
     model.ShowReport   = true;
     model.Result       = LeadReportCore.LeadClosedReport(model);
     return(View(model));
 }
Exemplo n.º 2
0
 public ActionResult LeadsByProperty(LeadsByPropertyFilter model)
 {
     model.ShowReport = true;
     model.Result     = LeadReportCore.LeadsByProperty(model);
     return(View(model));
 }
Exemplo n.º 3
0
 public ActionResult LeadByABranch(LeadActivityByBranchFilter model)
 {
     model.ShowReport = true;
     model.Results    = LeadReportCore.LeadByBranch(model);
     return(View(model));
 }
Exemplo n.º 4
0
 public ActionResult LeadByAnAgent(LeadActivityByAgentFilter model)
 {
     model.ShowReport = true;
     model.Result     = LeadReportCore.LeadByAgentNew(model);
     return(View(model));
 }