23 lines
695 B
C#
23 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Entities.Reports
|
|
{
|
|
public class CallRateReport
|
|
{
|
|
[Key]
|
|
public required string MRUserId { get; set; }
|
|
public string? MedRepName { get; set; }
|
|
public string? Company { get; set; }
|
|
public int TotalTargetCall { get; set; }
|
|
public int TotalActualCallRate { get; set; }
|
|
public int TotalMissedCall { get; set; }
|
|
public int TotalReschedule { get; set; }
|
|
public decimal TotalCallRatePercentage { get; set; }
|
|
}
|
|
}
|