Skip to content

Commit

Permalink
update follower
Browse files Browse the repository at this point in the history
  • Loading branch information
sakchait committed Apr 11, 2020
1 parent 3fb86db commit 31b2f30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CRM.Services/ActivityService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,10 @@ public List<EventAttendee> GetEmailsFollowID(string activityId)
var emp = _employeeService.GetEmployeeByID(item.EmpId);
string fullname = $"{emp.EmpFirstName} {emp.EmpLastName}";
//employeeFollowers.Add(new EmployeeFollowerDto { DisplayName = fullname, Email = emp.Email });
//employeeFollowers.Add(new EventAttendee
//{ DisplayName = fullname, Email = emp.Email });
employeeFollowers.Add(new EventAttendee
{ DisplayName = fullname, Email = emp.Email });
{ DisplayName = fullname, Email = emp.Facebook });
}
return employeeFollowers;
}
Expand Down

0 comments on commit 31b2f30

Please sign in to comment.