//Personas que se registraron el mismo dia
 public List <Cliente> ClientePorFechaRegistroMismoDia(DateTime fc)
 {
     return(repository.GetCustomersByRegisterDate(fc).ToList());
 }