public ContatosController(IContatoAppService contatoApp, IPessoaAppService pessoaApp, ITipoContatoAppService tipoContatoApp)
 {
     _contatoApp = contatoApp;
     _pessoaApp = pessoaApp;
     _tipoContatoApp = tipoContatoApp;
 }
 public TipoContatoAppService(ITipoContatoAppService tipoContatoAppService)
 {
     _tipoContatoAppService = tipoContatoAppService;
 }