Exemplo n.º 1
0
 public List <RepresentativeDetailsDTO> GetRepresentatives()
 {
     try
     {
         return(_repScheduleRepository.GetRepresentativesDetails());
     }
     catch (Exception)
     {
         throw;
     }
 }
Exemplo n.º 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;
     }
 }
Exemplo n.º 3
0
 public List <RepresentativeDetails> GetRepresentatives()
 {
     return(_repschedulerepository.GetRepresentativesDetails());
 }