Exemple #1
0
 public List <RepresentativeDetailsDTO> GetRepresentatives()
 {
     try
     {
         return(_repScheduleRepository.GetRepresentativesDetails());
     }
     catch (Exception)
     {
         throw;
     }
 }
Exemple #2
0
 public List <RepresentativeDetails> GetRepresentatives()
 {
     try
     {
         _log.Info("Getting list of representatives");
         return(_repScheduleRepository.GetRepresentativesDetails());
     }
     catch (Exception e)
     {
         _log.Error("Error in getting RepScheduleProvider while getting list of representatives - " + e.Message);
         throw;
     }
 }
Exemple #3
0
 public List <RepresentativeDetails> GetRepresentatives()
 {
     return(_repschedulerepository.GetRepresentativesDetails());
 }