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