public ExamplePersonBusiness(IExamplePersonRepository personRepository,
                              IExamplesMessages examplesMessages,
                              IExamplesConstants examplesConstants)
 {
     _personRepository  = personRepository;
     _examplesMessages  = examplesMessages;
     _examplesConstants = examplesConstants;
 }
 public ExamplePersonBusiness(IExamplePersonRepository personRepository)
 {
     _personRepository = personRepository;
 }