public EmpleadoController(IEmpleadoService empleadoService, IEmpresaService empresaService, ITipoIdentificacionService tipoIdentificacionService)
 {
     EmpleadoService           = empleadoService;
     EmpresaService            = empresaService;
     TipoIdentificacionService = tipoIdentificacionService;
 }
 public IdentificacionController(ITipoIdentificacionService tipoIdentificacionService)
 {
     _tipoIdentificacionService = tipoIdentificacionService;
 }